diff options
Diffstat (limited to 'contrib/hdload/Makefile')
-rw-r--r-- | contrib/hdload/Makefile | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/contrib/hdload/Makefile b/contrib/hdload/Makefile deleted file mode 100644 index 9ed750de..00000000 --- a/contrib/hdload/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -# Use nasm or as86 -ASM=nasm -# ASM=as86 - -hdload.bin: hdload.S -ifeq ($(ASM),as86) - gcc $(CFLAGS) -DUSE_AS86 -E -traditional -o hdload.s hdload.S - as86 -0 -b hdload.bin hdload.s -else - gcc $(CFLAGS) -DUSE_NASM -E -traditional -o hdload.s hdload.S - nasm -f bin hdload.s -o hdload.bin -endif - -clean: - $(RM) -f hdload.s hdload.bin |