# this makefile is for Watcom C++ versions 10.5 or later under DOS # Compiler options OPT = -oacilptur -s # uncomment this for optimization DEB = # -od -d2 # uncomment this for debugging DEFS = -wx -ml -bt=DOS CFLAGS = $(OPT) $(DEB) $(DEFS) LFLAGS = @tass_lnk.wat # explicit rules exe: tm3get11 tm3get11: tm3get11.exe tm3get11.obj: tm3get11.c tass_dos.1 tass_dos.2 wcc $(CFLAGS) tm3get11.c tm3get11.exe: tm3get11.obj wlink $(LFLAGS) FILE tm3get11.obj NAME tm3get11.exe clean: del *.obj del *.map del *.err