#
# Makefile for COMPARE and UPDATE.
# (Note that this makefile may not work with Microsoft's MAKE)
# EXE files are targeted for OS/2 and bound for use under MSDOS
#
all: compare.exe update.exe
compare.exe: compare.c
    cl -AC -Ox -G0 -FPi -Lp compare.c compare.def
    bind compare.exe \os2\doscalls.lib
    del compare.obj
update.exe: update.c
    cl -AC -Ox -G0 -FPi -Lp update.c
    bind update.exe \os2\doscalls.lib
    del update.obj
