diff options
Diffstat (limited to 'Source/Applications/ASMApps/Makefile')
-rw-r--r-- | Source/Applications/ASMApps/Makefile | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/Source/Applications/ASMApps/Makefile b/Source/Applications/ASMApps/Makefile deleted file mode 100644 index 8cc8bfd..0000000 --- a/Source/Applications/ASMApps/Makefile +++ /dev/null @@ -1,20 +0,0 @@ -.PHONY: clean, mrproper - -ASM = nasm - -Applications = test - -all: $(Applications) - echo "* Done with ASM applications : $(Applications)" - -rebuild: mrproper all - -%: %.asm - echo "* Compiling $<..." - $(ASM) -o $@ $< - -clean: - echo "* Removing files..." - rm -rf $(Applications) - -mrproper: clean |