home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 1 / crawlyvol1.bin / program / compiler / sozobon / scsrc20 / tools / makefile < prev    next >
Makefile  |  1991-02-22  |  425b  |  32 lines

  1. #ECHO=echo
  2. #RM=rm
  3. #CC=scc
  4.  
  5. #
  6. # Makefile for various utilities
  7. #
  8. CFLAGS = -O
  9.  
  10. PROGS = nm.ttp size.ttp ar.ttp cc.ttp
  11.  
  12. all: $(PROGS)
  13.     @$(ECHO) Compile done
  14.  
  15. nm.ttp: nm.c
  16.     $(CC) $(CFLAGS) nm.c -o nm.ttp
  17.  
  18. size.ttp: size.c
  19.     $(CC) $(CFLAGS) size.c -o size.ttp
  20.  
  21. ar.ttp: ar.c
  22.     $(CC) $(CFLAGS) ar.c -o ar.ttp
  23.  
  24. cc.ttp: cc.c
  25.     $(CC) $(CFLAGS) cc.c -o cc.ttp
  26.  
  27. clean:
  28.     $(RM) *.o
  29.  
  30. clobber:
  31.     $(RM) *.o $(PROGS)
  32.