home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / COMPUPD.ZIP / MAKEFILE < prev    next >
Text File  |  1989-05-16  |  455b  |  15 lines

  1. #
  2. # Makefile for COMPARE and UPDATE.
  3. # (Note that this makefile may not work with Microsoft's MAKE)
  4. # EXE files are targeted for OS/2 and bound for use under MSDOS
  5. #
  6. all: compare.exe update.exe
  7. compare.exe: compare.c
  8.     cl -AC -Ox -G0 -FPi -Lp compare.c compare.def
  9.     bind compare.exe \os2\doscalls.lib
  10.     del compare.obj
  11. update.exe: update.c
  12.     cl -AC -Ox -G0 -FPi -Lp update.c
  13.     bind update.exe \os2\doscalls.lib
  14.     del update.obj
  15.