Annotation of imach/src/Makefile, revision 1.7

1.5       lievre      1: #CC= gcc -v
                      2: CC= gcc
1.3       lievre      3: #LFLAGS= -v -g
                      4: #CFLAGS= -g 
                      5: 
1.7     ! lievre      6: #LFLAGS= -g -mno-cygwin
        !             7: #CFLAGS= -g
1.6       lievre      8: 
1.7     ! lievre      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 
                     17:        $(CC) $(LFLAGS) -c imach.c
1.7     ! lievre     18: 
        !            19: 
1.4       lievre     20: $(PARAM).htm: imach $(PARAM).txt data1.txt
                     21:        ./imach $(PARAM).txt
1.2       lievre     22: 
1.5       lievre     23: clean: 
1.4       lievre     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
1.2       lievre     27: 
                     28: 

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