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

version 1.30, 2010/04/30 09:00:45 version 1.31, 2011/09/02 10:28:58
Line 2  VERSION=0.98m Line 2  VERSION=0.98m
 COPYRIGHT=Copyright (C)  2002-2010 INED-EUROREVES-Institut de longevite  COPYRIGHT=Copyright (C)  2002-2010 INED-EUROREVES-Institut de longevite
 IMACHSETUPVERSION=1  IMACHSETUPVERSION=1
   
 # make _windowsonlinux=1 imachcygopt.exe  
 # make _windowsonlinux=1 imachcyg-setup (touch setup.iss.in)  
   
 # make _linux=1 imachopt  # make _linux=1 imachopt
 # make _linux=1 imach  # make _linux=1 imach
   
Line 15  IMACHSETUPVERSION=1 Line 12  IMACHSETUPVERSION=1
 # make _windows=1 imachcyg  # make _windows=1 imachcyg
 # make _windows=1 imachcyg-setup (touch setup.iss.in)  # make _windows=1 imachcyg-setup (touch setup.iss.in)
 # make _windows=1 imachcyg-noreg-setup  # 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"
Line 25  GCC= gcc Line 29  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
Line 63  UNIX2DOS= unix2dos Line 69  UNIX2DOS= unix2dos
 SETUPCOMP= wine "C:////Program Files////Inno Setup 4////Compil32.exe"  SETUPCOMP= wine "C:////Program Files////Inno Setup 4////Compil32.exe"
 endif  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
   
 ifdef _linux  ifdef _linux
 #CFLAGS= -g -DUNIX -DDEBUGHESS  #CFLAGS= -g -DUNIX -DDEBUGHESS
 CFLAGS= -g -DUNIX  CFLAGS= -g -DUNIX
Line 89  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 105  $(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
   
 $(TMPNOREGSETUPSCRIPT): $(TMPSCRIPTIN)  $(TMPNOREGSETUPSCRIPT): $(TMPSCRIPTIN)
         $(SED) -e "s/@APPNAME@/$(APPNAME)/g; \          $(SED) -e "s/@APPNAME@/$(APPNAME)/g; \
Line 133  PARAM=mypar1 Line 152  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   simach : simach.o 
         $(CC) $(LFLAGS) $(LGSL) -o simach simach.o          $(CC) $(LFLAGS) $(LGSL) -o simach simach.o

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


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