X-Git-Url: http://4ch.mooo.com/gitweb/?a=blobdiff_plain;f=16%2Fmodex16%2FMAKEFILE;h=e0a07cc4ecc9f577e2c5d2273685644a00df5c15;hb=86c102f6f9e168a6c11fdf611ba128c6addd0412;hp=b073c98fd478ab1ac3d305d0a1256aa8f1d7a20b;hpb=e8f5c0d7c0f15f079b025ab4c144b71c7f039ebc;p=16.git diff --git a/16/modex16/MAKEFILE b/16/modex16/MAKEFILE index b073c98f..e0a07cc4 100644 --- a/16/modex16/MAKEFILE +++ b/16/modex16/MAKEFILE @@ -1,17 +1,31 @@ -FLAGS=-0 -d2 -all: test.exe pcxtest.exe +FLAGS=-0 +all: test.exe pcxtest.exe test2.exe scroll.exe +scroll.exe: scroll.obj modex16.obj + wcl $(FLAGS) scroll.obj modex16.obj +scroll.obj: scroll.c + wcl $(FLAGS) -c scroll.c 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