home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume4 / quickplot / part2 / Makefile.lplot < prev    next >
Encoding:
Makefile  |  1986-11-30  |  729 b   |  37 lines

  1. # $Header: Makefile.lplot,v $
  2. # $Log: Makefile.lplot,v $
  3.  
  4. DEFINES=-DDEBUG -DBIGENDIAN
  5. CFLAGS = -O $(DEFINES)
  6. #CFLAGS = -pg $(DEFINES)
  7.  
  8. lplot:    global.o lplot.o read_stream.o \
  9.         functions.o iobuf.o alpha_plot.o
  10.         cc -o lplot $(CFLAGS) global.o lplot.o \
  11.         read_stream.o functions.o iobuf.o \
  12.         alpha_plot.o -lm 
  13.  
  14. clean:
  15.         rm -f *.o
  16.  
  17. copy:
  18.         cpr -n -s defs.h global.c extern.h io.h \
  19.         lplot.c read_stream.c functions.c iobuf.c \
  20.         alpha_plot.c | lprn
  21.  
  22. lint:
  23.         lint -ph $(DEFINES) global.c lplot.c \
  24.         read_stream.c functions.c iobuf.c \
  25.         alpha_plot.c
  26.  
  27. global.o:    defs.h io.h
  28. lplot.o:    defs.h extern.h io.h
  29. read_stream.o:    defs.h extern.h
  30. functions.o:    defs.h extern.h
  31. iobuf.o:    defs.h extern.h io.h
  32. alpha_plot.o:    extern.h
  33.