home *** CD-ROM | disk | FTP | other *** search
Makefile | 1986-11-30 | 679 b | 32 lines |
- #
- # $Header: Makefile.quick,v $
- #
- # $Log: Makefile.quick,v $
- #
- #
-
- DEFINES=-DQUICKPLOT -DDEBUG -DBIGENDIAN
- CFLAGS = -O $(DEFINES)
- #CFLAGS = -pg $(DEFINES)
-
- quickplot: global.o lplot.o read_stream.o functions.o iobuf.o
- cc -o quickplot $(CFLAGS) global.o lplot.o read_stream.o \
- functions.o iobuf.o -lm -ltermcap
-
- clean:
- rm -f *.o quickplot lplot
-
- copy:
- cpr -n -s defs.h global.c extern.h io.h lplot.c read_stream.c \
- functions.c iobuf.c | lprn
-
- lint:
- lint -ph $(DEFINES) global.c lplot.c read_stream.c \
- functions.c iobuf.c
-
- global.o: defs.h io.h
- lplot.o: defs.h extern.h io.h
- read_stream.o: defs.h extern.h
- functions.o: defs.h extern.h
- iobuf.o: defs.h extern.h io.h
-