home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 1 / crawlyvol1.bin / program / compiler / sozobon / scsrc20 / make / makefile < prev    next >
Makefile  |  1988-10-13  |  359b  |  26 lines

  1. #
  2. # Makefile for make
  3. #
  4.  
  5. CFLAGS = -O
  6.  
  7. OBJS1 = check.o input.o macro.o reader.o rules.o readenv.o
  8. OBJS2 = main.o make.o ststuff.o
  9. #OBJS2 =
  10.  
  11. make.ttp : $(OBJS1) $(OBJS2)
  12.     cc $(OBJS1) $(OBJS2) -o make.ttp
  13.  
  14. touch.ttp : touch.c
  15.     cc touch.c -o touch.ttp
  16.  
  17.  
  18. $(OBJS1) : h.h
  19. $(OBJS2) : h.h astat.h
  20.  
  21. clean:
  22.     $(RM) *.o
  23.  
  24. clobber:
  25.     $(RM) *.o *.ttp
  26.