david/ipxe
david
/
ipxe
Archived
1
0
Fork 0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/contrib/flashimg/Makefile

30 lines
459 B
Makefile

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