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

  1. OBJECTS = files.o sort.o fmerge.o
  2.  
  3. DIR = .
  4.  
  5. EDGELIB = ../Lib/libedge.a
  6.  
  7. CFLAGS = -DDEBUG -g
  8.  
  9. #
  10.  
  11. $(DIR)/sort : $(OBJECTS) $(EDGELIB)
  12.     cc $(CFLAGS) $(OBJECTS) $(EDGELIB) -o $(DIR)/sort
  13.  
  14. clean :
  15.     -rm *.o
  16.  
  17. # dependancies
  18.  
  19. files.o : sort_thing.h cmd.h
  20. fmerge.o : sort.h sort_thing.h
  21. sort.o : sort.h sort_thing.h fd.h
  22.  
  23. # end of dependancies
  24.