Deleted Added
full compact
Makefile (128691) Makefile (128718)
1# $FreeBSD: head/sys/boot/i386/boot0/Makefile 128691 2004-04-27 19:07:35Z phk $
1# $FreeBSD: head/sys/boot/i386/boot0/Makefile 128718 2004-04-28 16:16:16Z ru $
2
3PROG= ${BOOT}
4INTERNALPROG=
5FILES= ${BOOT}
6NOMAN=
7SRCS= ${BOOT}.s
8
9BOOT?= boot0

--- 20 unchanged lines hidden (view full) ---

30BOOT_BOOT0_COMCONSOLE_SPEED?= 0xE3
31
32AFLAGS+=--defsym FLAGS=${BOOT_BOOT0_FLAGS} \
33 --defsym TICKS=${BOOT_BOOT0_TICKS} \
34 --defsym COMSPEED=${BOOT_BOOT0_COMCONSOLE_SPEED}
35
36LDFLAGS=-N -e start -Ttext ${BOOT_BOOT0_ORG} -Wl,-S,--oformat,binary
37
2
3PROG= ${BOOT}
4INTERNALPROG=
5FILES= ${BOOT}
6NOMAN=
7SRCS= ${BOOT}.s
8
9BOOT?= boot0

--- 20 unchanged lines hidden (view full) ---

30BOOT_BOOT0_COMCONSOLE_SPEED?= 0xE3
31
32AFLAGS+=--defsym FLAGS=${BOOT_BOOT0_FLAGS} \
33 --defsym TICKS=${BOOT_BOOT0_TICKS} \
34 --defsym COMSPEED=${BOOT_BOOT0_COMCONSOLE_SPEED}
35
36LDFLAGS=-N -e start -Ttext ${BOOT_BOOT0_ORG} -Wl,-S,--oformat,binary
37
38.include <bsd.prog.mk>
38CLEANFILES+= boot0.s
39boot0.s: boot0_512.s
40 cpp -USIO < ${.ALLSRC} > ${.TARGET}
39
41
40boot0.s: boot0_512.s
41 cpp -USIO < ${.CURDIR}/boot0_512.s > boot0.s
42CLEANFILES+= boot0sio.s
43boot0sio.s: boot0_512.s
44 cpp -DSIO < ${.ALLSRC} > ${.TARGET}
42
45
43boot0sio.s: ${.CURDIR}/../boot0/boot0_512.s
44 cpp -DSIO < ${.CURDIR}/../boot0/boot0_512.s > boot0sio.s
46.include <bsd.prog.mk>