home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 581b.lha / genmake_v1.03 / Makefile < prev    next >
Encoding:
Makefile  |  1991-11-10  |  888 b   |  68 lines

  1. #Genmake v1.03  10/30/91  Copyright(c) 1990, 1991 by Kyle Saunders
  2. CC= cc
  3. COPTS= -g
  4. OFILES= \
  5.     cpp.o\
  6.     build.o\
  7.     genmake.o\
  8.     nodes.o\
  9.     makef.o\
  10.     print_deps.o\
  11.     parse.o\
  12.     valid.o
  13. #
  14. genmake:    $(OFILES)
  15.         $(CC) $(COPTS) -o genmake $(OFILES)
  16.  
  17. cpp.o:    cpp.c\
  18.         types.h
  19.         $(CC) $(COPTS) -c cpp.c
  20.  
  21. err.h:    
  22.         touch err.h
  23.  
  24. opts.h:    
  25.         touch opts.h
  26.  
  27. types.h:    \
  28.         version.h\
  29.         consts.h
  30.         touch types.h
  31.  
  32. version.h:    
  33.         touch version.h
  34.  
  35. build.o:    types.h\
  36.         build.c
  37.         $(CC) $(COPTS) -c build.c
  38.  
  39. genmake.o:    err.h\
  40.         opts.h\
  41.         types.h\
  42.         genmake.c
  43.         $(CC) $(COPTS) -c genmake.c
  44.  
  45. consts.h:    
  46.         touch consts.h
  47.  
  48. nodes.o:    types.h\
  49.         nodes.c
  50.         $(CC) $(COPTS) -c nodes.c
  51.  
  52. makef.o:    types.h\
  53.         makef.c
  54.         $(CC) $(COPTS) -c makef.c
  55.  
  56. print_deps.o:    types.h\
  57.         print_deps.c
  58.         $(CC) $(COPTS) -c print_deps.c
  59.  
  60. parse.o:    types.h\
  61.         parse.c
  62.         $(CC) $(COPTS) -c parse.c
  63.  
  64. valid.o:    types.h\
  65.         valid.c
  66.         $(CC) $(COPTS) -c valid.c
  67.  
  68.