File:  [Local Repository] / imach / src / Makefile
Revision 1.5: download - view: text, annotated - select for diffs
Wed May 2 18:44:18 2001 UTC (23 years, 1 month ago) by lievre
Branches: MAIN
CVS tags: HEAD
Change of index.htm to parameterfile.htm
Version 0.64b

    1: #CC= gcc -v
    2: CC= gcc
    3: #LFLAGS= -v -g
    4: #CFLAGS= -g 
    5: 
    6: LFLAGS= -O2 -g -mno-cygwin
    7: CFLAGS= -O2 -g
    8: 
    9: PARAM=mypar1
   10: 
   11: imach : imach.o 
   12: 	$(CC) $(LFLAGS) -o imach imach.o
   13: imach.o : imach.c 
   14: 	$(CC) $(LFLAGS) -c imach.c
   15: $(PARAM).htm: imach $(PARAM).txt data1.txt
   16: 	./imach $(PARAM).txt
   17: 
   18: clean: 
   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
   22: 
   23: 

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