home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 391.lha / AmigaUser / src / makefile < prev    next >
Makefile  |  1990-07-06  |  437b  |  23 lines

  1. # don't forget to set the system type in defs.h
  2. #this makefile for Manx 3.6a
  3.  
  4. FILES = main.o gen.o util.o auc.o readdatafile.o
  5. CFLAGS = 
  6.  
  7. auc:    $(FILES)
  8.     ln $(CFLAGS) -o auc $(FILES) -lm -lc
  9.  
  10. main.o:    main.c
  11.     cc $(CFLAGS) -Z 3072 -o main.o main.c
  12.  
  13. #   If you are running this from a VMS system use the following
  14. # for your makefile
  15. #
  16. #FILES = main.obj,gen.obj,util.obj,auc.obj,readdatafile.obj
  17. #
  18. #
  19. #auc: $(FILES)
  20. #    link/exe=auc $(FILES)
  21.  
  22.  
  23.