home *** CD-ROM | disk | FTP | other *** search
Makefile | 1986-11-30 | 729 b | 37 lines |
- #
- # $Header: Makefile.lplot,v $
- #
- # $Log: Makefile.lplot,v $
- #
- #
-
- DEFINES=-DDEBUG -DBIGENDIAN
- CFLAGS = -O $(DEFINES)
- #CFLAGS = -pg $(DEFINES)
-
- lplot: global.o lplot.o read_stream.o \
- functions.o iobuf.o alpha_plot.o
- cc -o lplot $(CFLAGS) global.o lplot.o \
- read_stream.o functions.o iobuf.o \
- alpha_plot.o -lm
-
- clean:
- rm -f *.o
-
- copy:
- cpr -n -s defs.h global.c extern.h io.h \
- lplot.c read_stream.c functions.c iobuf.c \
- alpha_plot.c | lprn
-
- lint:
- lint -ph $(DEFINES) global.c lplot.c \
- read_stream.c functions.c iobuf.c \
- alpha_plot.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
- alpha_plot.o: extern.h
-