File:  [Local Repository] / imach / src / Makefile
Revision 1.7: download - view: text, annotated - select for diffs
Wed Feb 20 17:25:35 2002 UTC (22 years, 4 months ago) by lievre
Branches: MAIN
CVS tags: HEAD
Nothing

    1: #CC= gcc -v
    2: CC= gcc
    3: #LFLAGS= -v -g
    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) $(LFLAGS) -c imach.c
   18: 
   19: 
   20: $(PARAM).htm: imach $(PARAM).txt data1.txt
   21: 	./imach $(PARAM).txt
   22: 
   23: clean: 
   24: 	rm or$(PARAM).txt er$(PARAM).txt pijr$(PARAM).txt plr$(PARAM).txt \
   25: 	r$(PARAM).txt tr$(PARAM).txt vpl$(PARAM).txt pr$(PARAM).txt \
   26: 	vr$(PARAM).txt *.gif imach.exe imach.o
   27: 
   28: 

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