home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 1 / crawlyvol1.bin / program / compiler / sozobon / scsrc20 / tools / make.mnx < prev    next >
Text File  |  1991-02-22  |  565b  |  40 lines

  1. ECHO=echo
  2. RM=rm
  3. CC=scc
  4.  
  5. #
  6. # Makefile for various utilities
  7. #
  8. CFLAGS = -O -I/usr/sozobon/include -DMINIX
  9.  
  10. PROGS = snm ssize sar scc prof
  11.  
  12. all: $(PROGS)
  13.     @$(ECHO) Compile done
  14.  
  15. snm: nm.c
  16.     $(CC) $(CFLAGS) nm.c -o snm
  17.     chmem =2000 snm
  18.  
  19. ssize: size.c
  20.     $(CC) $(CFLAGS) size.c -o ssize
  21.     chmem =2000 ssize
  22.  
  23. sar: ar.c
  24.     $(CC) $(CFLAGS) ar.c -o sar
  25.     chmem =4000 sar
  26.  
  27. scc: cc.c
  28.     $(CC) $(CFLAGS) cc.c -o scc
  29.     chmem =20000 scc
  30.  
  31. prof: prof.c
  32.     $(CC) $(CFLAGS) prof.c -o prof
  33.     chmem =2000 prof
  34.  
  35. clean:
  36.     $(RM) *.o
  37.  
  38. clobber:
  39.     $(RM) *.o $(PROGS)
  40.