Diff for /imach/src/Makefile between versions 1.21 and 1.31

version 1.21, 2006/03/15 17:43:00 version 1.31, 2011/09/02 10:28:58
Line 1 Line 1
 VERSION=0.98d  VERSION=0.98m
 COPYRIGHT=Copyright (C)  2002-2006 INED-EUROREVES-Institut de longévité  COPYRIGHT=Copyright (C)  2002-2010 INED-EUROREVES-Institut de longevite
 IMACHSETUPVERSION=1  IMACHSETUPVERSION=1
   
 # make _linux=1 imachopt  # make _linux=1 imachopt
 # make _linux=1 imach  # make _linux=1 imach
   
 # make _macosx=1  # make _macosx=1 imach
   # make _macosx=1 imachdmg
   
 #        Windows  #        Windows
 # make _windows=1 imachcyg  # make _windows=1 imachcyg
 # make _windows=1 imach-setup.exe  # make _windows=1 imachcyg-setup (touch setup.iss.in)
 # make _windows=1 imach-noreg-setup.exe  # make _windows=1 imachcyg-noreg-setup
   #
   # make _windowsonlinux=1 imachcyg-setup (touch setup.iss.in)
   # make _windowsonlinux=1 imachcyg-noreg-setup
   #
   # make _windowsonosx=1 imachcyg-setup (touch setup.iss.in)
   # make _windowsonosx=1 imachcyg-noreg-setup
   #
 # sortie dans Output/setup.exe  # sortie dans Output/setup.exe
 # ln -s /cygdrive/c/Program\ Files/Inno\ Setup\ 4/Compil32.exe /usr/local/bin/Compil32  # ln -s /cygdrive/c/Program\ Files/Inno\ Setup\ 4/Compil32.exe /usr/local/bin/Compil32
 ##SETUPCOMP=  "C:\Program Files\Inno Setup 3\Compil32.exe"  ##SETUPCOMP=  "C:\Program Files\Inno Setup 3\Compil32.exe"
   
 #CC= gcc -v  #CC= gcc -v
 CC= gcc  CC=$(GCC)
   GCC= gcc
   
 ifdef _macosx  ifdef _macosx
 # Mac OS/X version  # Mac OS/X version
 LFLAGS= -O3 -lm -DUNIX  LFLAGS= -g -lm -DUNIX
 CFLAGS= -O3 -DUNIX  CFLAGS= -g -DUNIX
   LFLAGSOPT= -O3 -lm -DUNIX
   CFLAGSOPT= -O3 -DUNIX
 UNIX2DOS= echo "Unix2dos "   UNIX2DOS= echo "Unix2dos " 
 # Don'know how to launch imach098.pmsp in batch to create package file imach098Panther.pkg  # Don'know how to launch imach098.pmsp in batch to create package file imach098Panther.pkg
 # ./createdmg.sh imach imach098panther ./imach098Panther  # ./createdmg.sh imach imach098panther ./imach098Panther
   # ./createdmg.sh imach imach098leopard ./imach098Leopard
 # and directory ./imach098Panther contains package file imach098Panther.pkg  # and directory ./imach098Panther contains package file imach098Panther.pkg
   #./create-dmg --window-size 500 300 --background ~/Projects/eclipse-osx-repackager/build/background.gif --icon-size 96 --volname "Hyper Foo" --icon "Applications" 380 205 --icon "Eclipse OS X Repackager" 110 205 test2.dmg /Users/andreyvit/Projects/eclipse-osx-repackager/temp/Eclipse\ OS\ X\ Repackager\ r10/
   # ./create-dmg --volname "IMaCh 0.98j" imach098j.dmg imach098Leopard
 endif  endif
   
 ifdef _windows  ifdef _windows
   CC=c:\MinGW\bin\Mingw32-gcc
   
 # Windows cygwin version  # Windows cygwin version
 LFLAGS= -g -mno-cygwin  LFLAGS= -g -mno-cygwin
 CFLAGS= -g -mno-cygwin  CFLAGS= -g -mno-cygwin
 LFLAGSOPT= -O3 -mno-cygwin  LFLAGSOPT= -O3 -mno-cygwin
 CFLAGSOPT= -O3 -mno-cygwin  CFLAGSOPT= -O3 -mno-cygwin
 UNIX2DOS= unix2dos  UNIX2DOS= unix2dos
 SETUPCOMP= Compil32   CP= copy
   #SETUPCOMP= Compil32 
 ##SETUPCOMP=start /wait "C:\Program\ Files\\Compil32.exe"  ##SETUPCOMP=start /wait "C:\Program\ Files\\Compil32.exe"
 ##SETUPCOMP=  "C:\Program Files\Inno Setup 4\Compil32.exe"  # cygwin SETUPCOMP=  "C:\Program Files\Inno Setup 4\Compil32.exe"
   SETUPCOMP= "C:////Program Files////Inno Setup 4////Compil32.exe"
   endif
   
   ifdef _windowsonlinux
   GCC=/usr/bin/i586-pc-mingw32-gcc
   LFLAGS= -g
   CFLAGS= -g
   LFLAGSOPT= -O3 -lm
   CFLAGSOPT= -O3
   CP= cp
   UNIX2DOS= unix2dos
   SETUPCOMP= wine "C:////Program Files////Inno Setup 4////Compil32.exe"
   endif
   
   ifdef _windowsonosx
   GCC=/usr/local/i386-mingw32-4.3.0/bin/i386-mingw32-gcc
   # w64 outputs bigger executables
   #GCC=/usr/local/cross-tools/bin/i686-w64-mingw32-gcc
   LFLAGS= -g
   CFLAGS= -g
   LFLAGSOPT= -O3
   CFLAGSOPT= -O3
   UNIX2DOS= unix2dos
   SETUPCOMP= ~/bin/InnoSetup5Playonmac
 endif  endif
   
 ifdef _linux  ifdef _linux
   #CFLAGS= -g -DUNIX -DDEBUGHESS
 CFLAGS= -g -DUNIX  CFLAGS= -g -DUNIX
 LFLAGS= -g -lm  LFLAGS= -g -lm 
   IGSL= -I/usr/include/gsl
   LGSL= -lgsl -lgslcblas
 CFLAGSOPT= -O3 -DUNIX  CFLAGSOPT= -O3 -DUNIX
 LFLAGSOPT= -O3 -lm  LFLAGSOPT= -O3 -lm
 UNIX2DOS= unix2dos  UNIX2DOS= unix2dos
Line 63  APPNAME=$(APPLICATION)-$(VERSION) Line 107  APPNAME=$(APPLICATION)-$(VERSION)
 GNUPLOTVERSION=4.0  GNUPLOTVERSION=4.0
 LICENSE=Copying  LICENSE=Copying
 TMPSETUPEXE=imach-$(VERSION)-$(IMACHSETUPVERSION)-setup.exe  TMPSETUPEXE=imach-$(VERSION)-$(IMACHSETUPVERSION)-setup.exe
   TMPNOREGSETUPEXE=imach-$(VERSION)-$(IMACHSETUPVERSION)-noreg-setup.exe
 LICENSEFILE=$(LICENSE)  LICENSEFILE=$(LICENSE)
 INFOBEFOREFILE=README.txt  INFOBEFOREFILE=README.txt
   
 $(TMPSETUPSCRIPT): $(TMPSCRIPTIN)  setup.iss: setup.iss.in
         $(SED) -e "s/@APPNAME@/$(APPNAME)/g; \          $(SED) -e "s/@APPNAME@/$(APPNAME)/g; \
                 s/@NOTINNOREG@//g; \                  s/@NOTINNOREG@//g; \
                 s/@NOREG@//g; \                  s/@NOREG@//g; \
Line 79  $(TMPSETUPSCRIPT): $(TMPSCRIPTIN) Line 124  $(TMPSETUPSCRIPT): $(TMPSCRIPTIN)
                 s/@DICTLANG@/$(DICTLANG)/g; \                  s/@DICTLANG@/$(DICTLANG)/g; \
                 s/@VERMAJOR@/$(VERMAJOR)/g; \                  s/@VERMAJOR@/$(VERMAJOR)/g; \
                 s/@COPYRIGHT@/$(COPYRIGHT)/g;" \                  s/@COPYRIGHT@/$(COPYRIGHT)/g;" \
                 $(TMPSCRIPTIN) > $(TMPSETUPSCRIPT)                  setup.iss.in > setup.iss
         $(UNIX2DOS) $(TMPSETUPSCRIPT)  
   
 $(TMPNOREGSETUPSCRIPT): $(TMPSCRIPTIN)  $(TMPNOREGSETUPSCRIPT): $(TMPSCRIPTIN)
         $(SED) -e "s/@APPNAME@/$(APPNAME)/g; \          $(SED) -e "s/@APPNAME@/$(APPNAME)/g; \
Line 96  $(TMPNOREGSETUPSCRIPT): $(TMPSCRIPTIN) Line 140  $(TMPNOREGSETUPSCRIPT): $(TMPSCRIPTIN)
                 s/@VERMAJOR@/$(VERMAJOR)/g; \                  s/@VERMAJOR@/$(VERMAJOR)/g; \
                 s/@COPYRIGHT@/$(COPYRIGHT)/g;" \                  s/@COPYRIGHT@/$(COPYRIGHT)/g;" \
                 $(TMPSCRIPTIN) > $(TMPNOREGSETUPSCRIPT)                  $(TMPSCRIPTIN) > $(TMPNOREGSETUPSCRIPT)
         $(UNIX2DOS) $(TMPNOREGSETUPSCRIPT)  #       $(UNIX2DOS) $(TMPNOREGSETUPSCRIPT)
   
 $(TMPSETUPEXE): $(TMPSETUPSCRIPT)  $(TMPSETUPEXE): $(TMPSETUPSCRIPT)
         $(SETUPCOMP) /cc $(TMPSETUPSCRIPT)          $(SETUPCOMP) /cc $(TMPSETUPSCRIPT)
Line 107  $(TMPNOREGSETUPEXE): $(TMPNOREGSETUPSCRI Line 151  $(TMPNOREGSETUPEXE): $(TMPNOREGSETUPSCRI
 PARAM=mypar1  PARAM=mypar1
   
 imachcyg-setup: imachcygopt.exe setup.iss  imachcyg-setup: imachcygopt.exe setup.iss
         cp imachcygopt.exe imach.exe          $(CP) imachcygopt.exe imach.exe
         $(SETUPCOMP) /cc $(TMPSETUPSCRIPT)          $(SETUPCOMP) /cc setup.iss
           cp Output/$(TMPSETUPEXE) imachcyg-setup
   
 # imachcyg-noreg-setup : imachcygopt imachcygopt.o setup.iss.in noreg-setup.iss $(TMPNOREGSETUPEXE)  # imachcyg-noreg-setup : imachcygopt imachcygopt.o setup.iss.in noreg-setup.iss $(TMPNOREGSETUPEXE)
 imachcyg-noreg-setup: imachcygopt.exe noreg-setup.iss  imachcyg-noreg-setup: imachcygopt.exe noreg-setup.iss
         cp imachcygopt.exe imach.exe          $(CP) imachcygopt.exe imach.exe
         $(SETUPCOMP) /cc $(TMPNOREGSETUPSCRIPT)          $(SETUPCOMP) /cc $(TMPNOREGSETUPSCRIPT)
           cp Output/$(TMPNOREGSETUPEXE) imachcyg-noreg-setup
   
   simach : simach.o 
           $(CC) $(LFLAGS) $(LGSL) -o simach simach.o
   simach.o : simach.c 
           $(CC) $(CFLAGS) -DGSL -c simach.c
   
 imach : imach.o   imach : imach.o 
         $(CC) $(LFLAGS) -o imach imach.o          $(CC) $(LFLAGS) -o imach imach.o
 imach.o : imach.c   imach.o : imach.c 
         $(CC) $(CFLAGS) -c imach.c          $(CC) $(CFLAGS) -DPOWELL -c imach.c
   
   
   imachsimplified : imachsimplified.o 
           $(CC)  $(LFLAGSOPT) -o imachsimplified imachsimplified.o
   imachsimplified.o : imachsimplified.c 
           $(CC) $(CFLAGSOPT) -DPOWELL -c imachsimplified.c
   
   imachgsl : imachgsl.o 
           $(CC) $(LFLAGS) $(LGSL) -o imachgsl imach.o
   imachgsl.o : imach.c 
           $(CC) $(CFLAGS) -DGSL $(IGSL) -c imach.c
   
 imachopt : imachopt.o   imachopt : imachopt.o 
         $(CC) $(LFLAGSOPT) -o imachopt imachopt.o          $(CC) $(LFLAGSOPT) -o imachopt imachopt.o
         ln -f imachopt imach          ln -f imachopt imach
 imachopt.o : imach.c   imachopt.o : imach.c 
         $(CC) $(CFLAGSOPT) -o imachopt.o -c imach.c          $(CC) $(CFLAGSOPT) -DPOWELL -o imachopt.o -c imach.c
   
   imachdmg : imachopt.o create-dmg
           $(CC) $(LFLAGSOPT) -o imach imachopt.o
           cp imach imach098Leopard/bin
           ./create-dmg --volname "IMaCh $(VERSION)" imach$(VERSION).dmg imach098Leopard
   
   
 imachcyg : imachcyg.o  strsep.o  imachcyg : imachcyg.o  strsep.o
         $(CC) $(LFLAGS) -o imach imachcyg.o strsep.o          $(CC) $(LFLAGS) -o imach imachcyg.o strsep.o

Removed from v.1.21  
changed lines
  Added in v.1.31


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>