home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 278.lha / File_v1.0 / makefile < prev    next >
Makefile  |  1989-08-08  |  337b  |  25 lines

  1. #
  2. # makefile for file
  3. #
  4. # Copyright 1989 Edwin Hoogerbeets
  5. #
  6. # This code is freely redistributable as long as no charge other than
  7. # reasonable copying fees is levied for it.
  8. #
  9.  
  10. CFLAGS=+L
  11. #-n -DDEBUG
  12.  
  13. LNDEBUG=
  14. #-g
  15.  
  16. BINDIR=dh0:usr/local/bin
  17.  
  18. file: file.o
  19.       ln file.o $(LNDEBUG) -lc32 -o $@
  20.  
  21. install: file
  22.       cp -f file $(BINDIR)
  23.  
  24.  
  25.