home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / tools / make / make_pd / makefile < prev    next >
Encoding:
Makefile  |  1987-02-01  |  269 b   |  13 lines

  1. # Makefile for make!
  2. # using Microsoft C 3.0 or 4.0 with the cl.exe program renamed to cc.exe
  3.  
  4. CFLAGS    =    -DMSC -O
  5.  
  6. OBJS    =    check.obj input.obj macro.obj main.obj \
  7.         make.obj reader.obj rules.obj msdos.obj
  8.  
  9. make.exe:    $(OBJS)
  10.     cc -o make $(OBJS)
  11.  
  12. $(OBJS):    h.h
  13.