home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 213a.lha / Sozobon-C / makefile < prev    next >
Makefile  |  1996-02-14  |  441b  |  27 lines

  1. #
  2. # The 'T' macro determines the target to be made in each subdirectory.
  3. # If unassigned, the default target will be used. To clean up the
  4. # subdirectories, invoke make as follows:
  5. #
  6. #    make T=clean
  7. #
  8. # To run make in specific subdirectories, use a command like:
  9. #
  10. #    make T=clobber tools lib top
  11. #
  12.  
  13. PROGS = hcc jas ld make tools top
  14.  
  15. LIBS = libfp
  16.  
  17. ALL = $(PROGS) $(LIBS)
  18.  
  19. all: $(ALL)
  20.  
  21. progs: $(PROGS)
  22.  
  23. libs: $(LIBS)
  24.  
  25. $(ALL):
  26.     make -c $@ $(T)
  27.