Annotation of imach/src/Makefile, revision 1.6
1.5 lievre 1: #CC= gcc -v
2: CC= gcc
1.3 lievre 3: #LFLAGS= -v -g
4: #CFLAGS= -g
5:
1.6 ! lievre 6: #LFLAGS= -O2 -g -mno-cygwin
! 7: #CFLAGS= -O2 -g
! 8:
! 9: LFLAGS= -O2 -mno-cygwin
! 10: CFLAGS= -O2
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
17: $(CC) $(LFLAGS) -c imach.c
1.4 lievre 18: $(PARAM).htm: imach $(PARAM).txt data1.txt
19: ./imach $(PARAM).txt
1.2 lievre 20:
1.5 lievre 21: clean:
1.4 lievre 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
1.2 lievre 25:
26:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>