Hello 
i attach the make file
he was not modified
thanks

export AXIS_TOP_DIR := $(shell pwd)

VERSION_STRING = " release 2.01"
BUILD = 
PART = 00000

# Do everything from scratch to images.
# The target name "all" is recursive in Rules.axis so we use this name.
everything:

# If the configure script or any files sourced by the configure script has
# changed the user should regenerate this file.
Makefile: ./configure .config configure-files/devboard/devboard
        @echo "The configuration has been modified." >&2
        @echo "Run \"./configure\" to update \"Makefile\"!" >&2
        @exit 1

# Let all targets depend on this file. So that we can detect a change
to the
# configure script.
%: Makefile
EOT

## files - Installs optional regular files, directories and symbolic
links.
##         Use this target if you have modified any file not installed
by the
##         install target. The install target also uses this target. The
##         commands of this target may create new files (such as tar
balls)
##         based on other files in the target directorys. If unsure about
##         the state of the target directory, use this function before
creating
##         images.
##
.PHONY: files
files:
        @echo "Installing regular files, directories and symbolic links"

        echo -e "
"$(VERSION_STRING)"
\\s \
 on a \\m (\\l)
" \
                > $(prefix)/etc/issue
        echo -e "
"$(VERSION_STRING)"
%s %r on a %m (%t)" \
                > $(prefix)/etc/issue.net
        if [ -f "$(prefix)/bin/sftpd" ]; then \
          echo $(VERSION_STRING) "(`date +'%b %d %Y'`) ready." \
                > $(prefix)/etc/sftpd.banner; \
        fi
        if [ -f "$(prefix)/bin/vftpd" ]; then \
          echo $(VERSION_STRING) "(`date +'%b %d %Y'`) ready." \
                > $(prefix)/etc/vftpd.banner; \
        fi
        $(INSTALL) -d $(prefix)/usr/html/incl
        echo $(VERSION_STRING) > $(prefix)/usr/html/incl/version.shtml
        $(INSTALL) -d $(prefix)/usr/share/axis-release
        @( \
                echo RELEASE=\"$(VERSION_STRING)\" ; \
                echo BUILD=\"$(BUILD)\" ; \
                echo BUILDTIME=\"`date '+%b %d %Y %H:%M'`\" ; \
                echo PART=\"$(PART)\" ; \
        ) > $(prefix)/usr/share/axis-release/variables
        @chmod 0644 $(prefix)/usr/share/axis-release/variables




Reply via email to