summaryrefslogtreecommitdiffstats
path: root/contrib/flashimg/Makefile
diff options
context:
space:
mode:
authorMarty Connor2010-01-17 03:47:39 +0100
committerMarty Connor2010-01-17 03:47:39 +0100
commit330abebddf67ab27998f64070f27d5874cbc7b06 (patch)
tree08f5954725930ee9c38b0afab4cb9a30c71ce7e3 /contrib/flashimg/Makefile
parent[sanboot] Prevent leaking a stack reference for "keep-san" AoE (diff)
downloadipxe-330abebddf67ab27998f64070f27d5874cbc7b06.tar.gz
ipxe-330abebddf67ab27998f64070f27d5874cbc7b06.tar.xz
ipxe-330abebddf67ab27998f64070f27d5874cbc7b06.zip
[contrib] Move most contrib content to a separate repository
Most of the content that was previously in this directory has been moved to a separate git repository: http://git.etherboot.org/?p=contrib.git;a=summary or the Etherboot Project wiki: http://etherboot.org/
Diffstat (limited to 'contrib/flashimg/Makefile')
-rw-r--r--contrib/flashimg/Makefile29
1 files changed, 0 insertions, 29 deletions
diff --git a/contrib/flashimg/Makefile b/contrib/flashimg/Makefile
deleted file mode 100644
index 39f58e23..00000000
--- a/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