home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / dfemx.zip / makefile < prev    next >
Makefile  |  1993-09-30  |  254b  |  22 lines

  1. CFLAGS = -c -O -Wall
  2. LFLAGS = -lgpp -s
  3.  
  4. default : df.exe
  5.  
  6. df.exe : df.o
  7.  
  8. df.o : df.cc
  9.  
  10. install : df.exe
  11.     -+copy df.exe \usr\local\bin\df.exe    
  12.  
  13. clean :
  14.     -+del df.o
  15.  
  16. .cc.o :
  17.     $(CC) $(CFLAGS) $<
  18.  
  19. .o.exe :
  20.     $(CC) -o $*.exe $& $(LFLAGS)
  21.  
  22.