File:  [Local Repository] / imach / src / Makefile
Revision 1.6: download - view: text, annotated - select for diffs
Thu May 17 16:07:14 2001 UTC (23 years, 1 month ago) by lievre
Branches: MAIN
CVS tags: HEAD
Updated to Windows2000: changes in the path name to execute wgnuplot.

    1: #CC= gcc -v
    2: CC= gcc
    3: #LFLAGS= -v -g
    4: #CFLAGS= -g 
    5: 
    6: #LFLAGS= -O2 -g -mno-cygwin
    7: #CFLAGS= -O2 -g
    8: 
    9: LFLAGS= -O2 -mno-cygwin
   10: CFLAGS= -O2
   11: 
   12: PARAM=mypar1
   13: 
   14: imach : imach.o 
   15: 	$(CC) $(LFLAGS) -o imach imach.o
   16: imach.o : imach.c 
   17: 	$(CC) $(LFLAGS) -c imach.c
   18: $(PARAM).htm: imach $(PARAM).txt data1.txt
   19: 	./imach $(PARAM).txt
   20: 
   21: clean: 
   22: 	rm or$(PARAM).txt er$(PARAM).txt pijr$(PARAM).txt plr$(PARAM).txt \
   23: 	r$(PARAM).txt tr$(PARAM).txt vpl$(PARAM).txt pr$(PARAM).txt \
   24: 	vr$(PARAM).txt *.gif imach.exe imach.o
   25: 
   26: 

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