Annotation of imach/src/Makefile, revision 1.10
1.5 lievre 1: #CC= gcc -v
2: CC= gcc
1.9 brouard 3: LFLAGS= -g -lm
4: CFLAGS= -g
1.3 lievre 5:
1.7 lievre 6: #LFLAGS= -g -mno-cygwin
7: #CFLAGS= -g
1.6 lievre 8:
1.9 brouard 9: #LFLAGS= -O3 -mno-cygwin
10: #CFLAGS= -O3
1.2 lievre 11:
1.5 lievre 12: PARAM=mypar1
1.2 lievre 13:
14: imach : imach.o
15: $(CC) $(LFLAGS) -o imach imach.o
16: imach.o : imach.c
1.9 brouard 17: $(CC) $(CFLAGS) -c imach.c
1.7 lievre 18:
1.8 lievre 19:
1.7 lievre 20:
1.4 lievre 21: $(PARAM).htm: imach $(PARAM).txt data1.txt
22: ./imach $(PARAM).txt
1.2 lievre 23:
1.5 lievre 24: clean:
1.4 lievre 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
1.2 lievre 28:
29:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>