X-Git-Url: http://4ch.mooo.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=16%2F16%2Fmakefile;fp=16%2F16%2Fmakefile;h=e6469f246c31f35ed84ba3e0bb4ce4dd61ba22b6;hb=d173c64f8f2db1b117bf25e4b74db4f404ea9d79;hp=0000000000000000000000000000000000000000;hpb=0dfcfd175f6b30ae2ed5ba87d4f91e92e00a73d2;p=16.git diff --git a/16/16/makefile b/16/16/makefile new file mode 100755 index 00000000..e6469f24 --- /dev/null +++ b/16/16/makefile @@ -0,0 +1,15 @@ +FLAGS=-0 -d3 +all: test.exe + +test.exe: test.obj modex16.obj + wcl $(FLAGS) test.obj modex16.obj + +test.obj: test.c lib\modex16.h + wcl $(FLAGS) -c test.c + +modex16.obj: lib\modex16.h lib\modex16.c + wcl $(FLAGS) -c lib\modex16.c + +clean: + del *.obj + del *.exe