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

  1. OBJECTS = driver.o pipeline.o pwait.o call.o panic.o names.o\
  2.        ../bin_lib.o
  3.  
  4. CFLAGS = -DDEBUG -g
  5.  
  6. DIR = .
  7.  
  8. #
  9.  
  10. $(DIR)/driver : $(OBJECTS)
  11.     cc $(CFLAGS) $(OBJECTS) -o $(DIR)/driver
  12.  
  13. clean :
  14.     -rm *.o
  15.  
  16. # dependancies
  17.  
  18. call.o : string.h
  19. driver.o : fd.h
  20.  
  21. # end of dependancies
  22.