home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / programm / utility / bmake15.lzh / ben / makefile < prev    next >
Encoding:
Makefile  |  1991-10-26  |  226 b   |  17 lines

  1. #    Makefile for ben.lib
  2. #    (c) Copyright 1991 by Ben Eng, All Rights Reserved
  3. #
  4.  
  5. CC = cc
  6. AS = cc
  7. CFLAGS = -2.0 -ms -r -proto
  8.  
  9. OBJ = scdir.o basename.o system.o
  10.  
  11. ben.lib : $(OBJ)
  12.     join $(OBJ) as $@
  13.  
  14. install:
  15.     copy ben.lib dlib:
  16.  
  17.