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

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