home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / SASC6571.LZX / extras / dirwalker / smakefile < prev    next >
Encoding:
Makefile  |  1996-12-24  |  169 b   |  12 lines

  1. SWORDOBJS = sword.o dirwalker.o
  2. SHOWOBJS = show.o dirwalker.o
  3.  
  4. all: sword show
  5.  
  6. sword: $(SWORDOBJS)
  7.    SC $(SWORDOBJS) LINK
  8.  
  9. show: $(SHOWOBJS)
  10.    SC $(SHOWOBJS) LINK
  11.  
  12.