X-Git-Url: http://4ch.mooo.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=16%2Fmodex16%2FMAKEFILE;h=c48885b8e88b319ff3c7e970ab100b7310270097;hb=42b3ed060a69fb588c7b933748400f2a052add0c;hp=b073c98fd478ab1ac3d305d0a1256aa8f1d7a20b;hpb=e8f5c0d7c0f15f079b025ab4c144b71c7f039ebc;p=16.git diff --git a/16/modex16/MAKEFILE b/16/modex16/MAKEFILE index b073c98f..c48885b8 100644 --- a/16/modex16/MAKEFILE +++ b/16/modex16/MAKEFILE @@ -1,17 +1,27 @@ -FLAGS=-0 -d2 -all: test.exe pcxtest.exe +FLAGS=-0 -d3 +all: test.exe pcxtest.exe test2.exe test.exe: test.obj modex16.obj wcl $(FLAGS) test.obj modex16.obj +test2.exe: test2.obj modex16.obj + wcl $(FLAGS) test2.obj modex16.obj + pcxtest.exe: pcxtest.obj modex16.obj wcl $(FLAGS) pcxtest.obj modex16.obj test.obj: test.c modex16.h wcl $(FLAGS) -c test.c +test2.obj: test2.c modex16.h + wcl $(FLAGS) -c test2.c + pcxtest.obj: pcxtest.c modex16.h wcl $(FLAGS) -c pcxtest.c modex16.obj: modex16.h modex16.c wcl $(FLAGS) -c modex16.c + +clean: + del *.obj + del *.exe