home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 216.lha / PdMake / makefile < prev    next >
Makefile  |  1996-02-15  |  217b  |  16 lines

  1. # Makefile for make!
  2.  
  3. .PRECIOUS = pdmake
  4.  
  5. CFLAGS = +l -n
  6.  
  7. OBJS = check.o input.o macro.o main.o make.o reader.o rules.o maksys.o amigasys.o
  8.  
  9. pdmake: $(OBJS)
  10.     ln -g -o pdmake $(OBJS) -lMyLib -lc32
  11.  
  12. $(OBJS): h.h
  13.  
  14. h.h:
  15.  
  16.