Annotation of imach/src/Makefile, revision 1.5
1.5 ! lievre 1: #CC= gcc -v
! 2: CC= gcc
1.3 lievre 3: #LFLAGS= -v -g
4: #CFLAGS= -g
5:
6: LFLAGS= -O2 -g -mno-cygwin
7: CFLAGS= -O2 -g
1.2 lievre 8:
1.5 ! lievre 9: PARAM=mypar1
1.2 lievre 10:
11: imach : imach.o
12: $(CC) $(LFLAGS) -o imach imach.o
13: imach.o : imach.c
14: $(CC) $(LFLAGS) -c imach.c
1.4 lievre 15: $(PARAM).htm: imach $(PARAM).txt data1.txt
16: ./imach $(PARAM).txt
1.2 lievre 17:
1.5 ! lievre 18: clean:
1.4 lievre 19: rm or$(PARAM).txt er$(PARAM).txt pijr$(PARAM).txt plr$(PARAM).txt \
20: r$(PARAM).txt tr$(PARAM).txt vpl$(PARAM).txt pr$(PARAM).txt \
21: vr$(PARAM).txt *.gif imach.exe imach.o
1.2 lievre 22:
23:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>