home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 September / Simtel20_Sept92.cdr / msdos / pgmutl / idtag.arc / makefile < prev    next >
Makefile  |  1990-01-15  |  265b  |  15 lines

  1. MODEL=S
  2. CFLAGS=-Oint -Gs -J
  3.  
  4. # Makefile for IDtag by Kenji Rikitake
  5.  
  6. OBJS = idtag.obj getopt.obj idtagout.obj
  7.  
  8. idtag.exe: $(OBJS)
  9.     cl -A$(MODEL) -Feidtag $(CFLAGS) $(OBJS) -link /M
  10.  
  11. idtag.obj getopt.obj: getopt.h
  12.  
  13. idtagout.obj: tag.txt
  14.     idtag tag.txt
  15.