# MAKFILE For BeepX Test Proggy

ASM = tasm
ASMOPTS = /t
LINK = TLINK
LINKOPTS = /x

all : test.asm test2.asm
        @echo     Assembling And Linking Test Programs
        @$(ASM) $(ASMOPTS) test > nul
        @$(LINK) $(LINKOPTS) test > nul
        @$(ASM) $(ASMOPTS) test2 > nul
        @$(LINK) $(LINKOPTS) test2 > nul
        @$(ASM) $(ASMOPTS) test3 > nul
        @$(LINK) $(LINKOPTS) test3 > nul
        @$(ASM) $(ASMOPTS) test4 > nul
        @$(LINK) $(LINKOPTS) test4 > nul
        @echo Removing OBJ Files
        @del *.obj > Nul
        @echo     Done.
        @echo     Type TEST/TEST2/TEST3/TEST4 To Run.

clean :
        @echo     Cleaning Up Mess :)
        @del *.exe > nul
        @del *.obj > nul
        @echo     Done.
