forked from Lainports/opnsense-ports
46 lines
1.6 KiB
Text
46 lines
1.6 KiB
Text
--- Makefile.orig 2013-08-10 02:01:58 UTC
|
|
+++ Makefile
|
|
@@ -21,21 +21,20 @@ OBJS= head.o reloc.o main.o test.o init.
|
|
|
|
|
|
all: clean memtest.bin memtest
|
|
- scp memtest.bin root@192.168.0.12:/srv/tftp/mt86plus
|
|
|
|
# Link it statically once so I know I don't have undefined
|
|
# symbols and then link it dynamically so I have full
|
|
# relocation information
|
|
memtest_shared: $(OBJS) memtest_shared.lds Makefile
|
|
- $(LD) --warn-constructors --warn-common -static -T memtest_shared.lds \
|
|
+ $(LD) --warn-constructors --warn-common -static --oformat elf32-i386-freebsd -T memtest_shared.lds \
|
|
-o $@ $(OBJS) && \
|
|
- $(LD) -shared -Bsymbolic -T memtest_shared.lds -o $@ $(OBJS)
|
|
+ $(LD) -shared -Bsymbolic --oformat elf32-i386-freebsd -T memtest_shared.lds -o $@ $(OBJS)
|
|
|
|
memtest_shared.bin: memtest_shared
|
|
objcopy -O binary $< memtest_shared.bin
|
|
|
|
memtest: memtest_shared.bin memtest.lds
|
|
- $(LD) -s -T memtest.lds -b binary memtest_shared.bin -o $@
|
|
+ $(LD) -s --oformat elf32-i386-freebsd -T memtest.lds -b binary memtest_shared.bin -o $@
|
|
|
|
head.s: head.S config.h defs.h test.h
|
|
$(CC) -E -traditional $< -o $@
|
|
@@ -47,7 +46,7 @@ setup.s: setup.S config.h defs.h
|
|
$(CC) -E -traditional $< -o $@
|
|
|
|
memtest.bin: memtest_shared.bin bootsect.o setup.o memtest.bin.lds
|
|
- $(LD) -T memtest.bin.lds bootsect.o setup.o -b binary \
|
|
+ $(LD) --oformat elf32-i386-freebsd -T memtest.bin.lds bootsect.o setup.o -b binary \
|
|
memtest_shared.bin -o memtest.bin
|
|
|
|
reloc.o: reloc.c
|
|
@@ -67,8 +66,7 @@ clean:
|
|
rm -f *.o *.s *.iso memtest.bin memtest memtest_shared \
|
|
memtest_shared.bin memtest.iso
|
|
|
|
-iso:
|
|
- make all
|
|
+iso: all
|
|
./makeiso.sh
|
|
|
|
install: all
|