home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 213b.lha / Sed / makefile < prev    next >
Encoding:
Makefile  |  1996-02-14  |  199 b   |  10 lines

  1. #makefile for the don kneller's shareware ndmake
  2.  
  3. OBJS=    sedcomp.o sedexec.o
  4.  
  5. sed:    $(OBJS) sed.h debug.h
  6.     $(CC) -o sed $(OBJS)
  7.  
  8. sedcomp.o: debug.h sed.h sedcomp.c 
  9. sedexec.o: debug.h sed.h sedexec.c 
  10.