#
#
# Script Makefile template
#
#  
#

#
# TOP
#  Set to top of source code tree.  Can be an absolute or relative path.
#
TOP	= ../../..

SCRIPTS	= noptrun


#####################################
#                                   #
# End of user configuration options #
# Change nothing below this line    #
#                                   #
#####################################

CONF    = $(TOP)/conf/$(ARCH).conf

all: 

install: 
	-@. $(CONF) ; for i in $(SCRIPTS);\
	do\
		(. $(CONF) ; echo ". $(CONF) ; $$INSTALL $$i $$INSTALL_SHARE_DIR/" ) ;\
		(. $(CONF) ; $$INSTALL $$i $$INSTALL_SHARE_DIR/ ) ;\
	done

depend:

clean:

