X-Git-Url: https://robinkrens.nl/gitweb/?a=blobdiff_plain;f=Makefile;h=33bfcaa5762e55d6eaceccf9f1dc9c791786d64f;hb=ba9c5cb4e9fe8d8724c2d14a9ad8b067a9a778bf;hp=ce76b7ca469219ef8a6869bf1ac8a943842a1395;hpb=d4fe34bf794943b74c2a13c4c0784a6f8b87f875;p=swan-dev diff --git a/Makefile b/Makefile index ce76b7c..33bfcaa 100644 --- a/Makefile +++ b/Makefile @@ -4,8 +4,12 @@ CC=bcc LD=ld86 AS=nasm +#$(LD) -M src/*.o + +# -d delete headers +# -s strip symbols all: - $(LD) -M src/*.o + $(LD) src/*.o -d -s -o test.wsc # use -x to for -ffreestanding c-files: @@ -14,6 +18,6 @@ init: $(AS) -fas86 src/*.s -i $(INC) clean: - rm -rf src/*.o + rm -rf src/*.o test.wsc