home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 2 / goldfish_vol2_cd1.bin / files / misc / sci / accrete / src / makefile < prev    next >
Encoding:
Makefile  |  1994-02-01  |  1.0 KB  |  51 lines

  1. #
  2. # Makefile V1.1 for accrete
  3. #
  4. # © Copyright Ethan Dicks, 1992, 1994
  5. # Permission to distribute freely for non-commercial purposes granted
  6. #
  7. #
  8. # V1.0 - 09-Apr-1992    Created
  9. # V1.1 - 02-Feb-1994    Updated for SAS/C v6.3
  10. #
  11. #
  12. CC= sc
  13.  
  14. # Uncomment either of the two following lines to change the nature of the
  15. # text output that Accrete spews forth during a run
  16.  
  17. #CFLAGS= define=VERBOSE
  18. #CFLAGS= define=SILENT
  19.  
  20. LFLAGS= SC SD ND
  21.  
  22. .c.o:
  23.     $(CC) $* $(CFLAGS)
  24.  
  25. # Define list of object files needed to rebuild the executables
  26.  
  27. ACCOBJ=    accrete.o display.o enviro.o main.o utils.o
  28. #ACCOBJ=    main.o
  29.  
  30. # Now, list all the dependencies
  31.  
  32. all: accrete
  33.  
  34. accrete: $(ACCOBJ)
  35.   slink <WITH <
  36. FROM lib:c.o $(ACCOBJ)
  37. LIBRARY lib:scm.lib lib:sc.lib lib:amiga.lib
  38. TO $@ $(LFLAGS)
  39. <
  40.  
  41. clean:
  42.     -delete \#?.o
  43.  
  44. # Source module dependencies
  45.  
  46. accrete.o:    accrete.c    structs.h const.h accrete.h
  47. display.o:    display.c    structs.h const.h accrete.h
  48. enviro.o:    enviro.c    structs.h const.h accrete.h
  49. main.o:        main.c        structs.h const.h accrete.h
  50. utils.o:    utils.c        structs.h const.h accrete.h
  51.