home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 316.lha / DF / makefile < prev   
Encoding:
Makefile  |  1989-12-05  |  122 b   |  11 lines

  1. CFLAGS = -n
  2.  
  3. .c.o:
  4.     cc $(CFLAGS) -o $@ $*.c
  5.  
  6. df:    df.o file.o
  7.     ln -g df.o file.o -lc 
  8.  
  9. df.o:    df.c df.h
  10. file.o:    file.c df.h
  11.