diff options
Diffstat (limited to 'gpxe/contrib/flashimg/Makefile')
-rw-r--r-- | gpxe/contrib/flashimg/Makefile | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/gpxe/contrib/flashimg/Makefile b/gpxe/contrib/flashimg/Makefile deleted file mode 100644 index 39f58e23..00000000 --- a/gpxe/contrib/flashimg/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -CPPFLAGS = -x assembler-with-cpp -AS86 = as86 -LD86 = ld86 -OBJDUMP = objdump - -.SUFFIXES: .s86 .asm .aout .img - -all: flashimg.img - -clean: - rm -rf *.o *.s86 *.aout *.img - -realclean: clean - rm -rf *.img - -.asm.s86: $*.asm $*.inc - $(CPP) $(CPPFLAGS) -o $@ $*.asm - -.s86.img: $*.s86 - $(AS86) -0 -b $@ $*.s86 - -# .s86.o: $*.s86 -# $(AS86) -0 -a -o $@ $*.s86 -# -# .o.aout: $*.o -# $(LD86) -0 -s -o $@ $*.o -# -# .aout.img: -# dd if=$*.aout of=$@ bs=32 skip=1 |