home *** CD-ROM | disk | FTP | other *** search
/ gdead.berkeley.edu / gdead.berkeley.edu.tar / gdead.berkeley.edu / pub / cad-tools / ciftomann.tar / edger_dir / Makefile < prev    next >
Makefile  |  1988-01-28  |  491b  |  28 lines

  1. OBJECTS = edge_polygon.o proc_polygon.o edger.o parseprocs.o parser.o\
  2.       vars.o ../bin_lib.o
  3.  
  4. DIR = .
  5.  
  6. EDGELIB = ../Lib/libedge.a
  7.  
  8. CFLAGS = -DDEBUG -g
  9.  
  10. #
  11.  
  12. $(DIR)/edger : $(OBJECTS)
  13.     cc $(CFLAGS) $(OBJECTS) $(EDGELIB) -lm -o $(DIR)/edger
  14.  
  15. clean :
  16.     -rm *.o
  17.  
  18. # dependancies
  19.  
  20. edge_polygon.o : ciftomann.h intersection.h aeledge.h fd.h
  21. edger.o : parser.h ciftomann.h fd.h
  22. parseprocs.o : parser.h
  23. parser.o : parser.h
  24. proc_polygon.o : parser.h ciftomann.h
  25. vars.o : parser.h
  26.  
  27. # end of dependancies
  28.