# makefile for extipl.exe #CFLAGS = -DDEBUG=1 CC = bcc ASM = tasm SRCS = extipl.c _extipl.asm all : extipl.exe extipl.exe : extipl.obj _extipl.obj $(CC) -mt extipl.obj _extipl.obj extipl.obj : extipl.c $(CC) $(CFLAGS) -mt -c extipl.c _extipl.obj : _extipl.asm $(ASM) -mx _extipl.asm clean : @del *.obj @del *.bak @del extipl.exe touch: touch $(SRCS) # end of Makefile