Changeset 265 for trunk/libjdkmidi/trunk
- Timestamp:
- 01/20/07 14:21:05 (22 months ago)
- Location:
- trunk/libjdkmidi/trunk
- Files:
-
- 1 modified
- 1 moved
-
GNUmakefile (moved) (moved from trunk/libjdkmidi/trunk/Makefile) (2 diffs)
-
configure (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/libjdkmidi/trunk/GNUmakefile
r264 r265 5 5 BUILDDIR=tmp 6 6 7 all : $(BUILDDIR)/ Makefile7 all : $(BUILDDIR)/GNUmakefile 8 8 cd $(BUILDDIR) && $(MAKE) 9 9 10 clean : $(BUILDDIR)/ Makefile10 clean : $(BUILDDIR)/GNUmakefile 11 11 cd $(BUILDDIR) && $(MAKE) && $(MAKE) clean 12 12 13 test : $(BUILDDIR)/ Makefile13 test : $(BUILDDIR)/GNUmakefile 14 14 cd $(BUILDDIR) && $(MAKE) && $(MAKE) test 15 15 16 docs : $(BUILDDIR)/ Makefile16 docs : $(BUILDDIR)/GNUmakefile 17 17 cd $(BUILDDIR) && $(MAKE) && $(MAKE) docs 18 18 19 asm : $(BUILDDIR)/ Makefile19 asm : $(BUILDDIR)/GNUmakefile 20 20 cd $(BUILDDIR) && $(MAKE) && $(MAKE) asm 21 21 … … 23 23 -mkdir $(BUILDDIR) 24 24 25 .PHONY : $(BUILDDIR)/ Makefile25 .PHONY : $(BUILDDIR)/GNUmakefile 26 26 27 $(BUILDDIR)/ Makefile : $(BUILDDIR)27 $(BUILDDIR)/GNUmakefile : $(BUILDDIR) 28 28 (cd $(BUILDDIR) && ../configure $(CONFIGURE_FLAGS) ) 29 29 -
trunk/libjdkmidi/trunk/configure
r264 r265 64 64 echo "without the --prefix option, the system defaults to $PWD/install - not /usr/local like gnu autoconf would" 65 65 echo "" 66 echo "After running the configure stage, a Makefile will be created for you to run with gnu make"66 echo "After running the configure stage, a GNUmakefile will be created for you to run with gnu make" 67 67 exit 1 68 68 fi … … 81 81 # A bunch of variables have default values but can be overriden by the command line 82 82 # at the end of this script, all variables with the "magic_" prefix are outputted to the 83 # Makefile and the vars.sh in the appropriate format. The script file './reconfigure' is created83 # GNUmakefile and the vars.sh in the appropriate format. The script file './reconfigure' is created 84 84 # with the current command line parameters 85 85 # … … 217 217 218 218 219 # extract all environment vars with the "magic_" prefix and save them in vars.sh and Makefile in the appropriate form:219 # extract all environment vars with the "magic_" prefix and save them in vars.sh and GNUmakefile in the appropriate form: 220 220 set | grep '^magic_' | sed "s/'//g" | awk '{ i = index($0,"="); print substr($0,7,i-7) "=\"" substr($0,i+1) "\"" }' >vars.sh 221 221 echo ". \"${magic_PROJECT_TOP_DIR}/project.sh\"" >>vars.sh 222 set | grep '^magic_' | sed "s/'//g" | awk '{ i = index($0,"="); print substr($0,7,i-7) "=" substr($0,i+1) "" }' > Makefile223 224 echo 'include $(CONFIGURE_DIR)/project.mak' >> Makefile225 echo 'include $(CONFIGURE_DIR)/magic.mak' >> Makefile222 set | grep '^magic_' | sed "s/'//g" | awk '{ i = index($0,"="); print substr($0,7,i-7) "=" substr($0,i+1) "" }' >GNUmakefile 223 224 echo 'include $(CONFIGURE_DIR)/project.mak' >>GNUmakefile 225 echo 'include $(CONFIGURE_DIR)/magic.mak' >>GNUmakefile 226 226 227 227 if [ -f ./reconfigure ]; then … … 236 236 chmod +x ./reconfigure 237 237 238 echo "./ Makefile ./vars.sh and ./reconfigure created."238 echo "./GNUmakefile ./vars.sh and ./reconfigure created." 239 239 echo "Now you may do:" 240 240 echo " make compile_info"
