File:  [Local Repository] / imach / src / Makefile
Revision 1.10: download - view: text, annotated - select for diffs
Sun May 16 15:09:13 2004 UTC (20 years, 1 month ago) by brouard
Branches: MAIN
CVS tags: HEAD
*** empty log message ***

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

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