Deleted Added
full compact
Makefile (111490) Makefile (116864)
1# $FreeBSD: head/sys/boot/i386/gptboot/Makefile 111490 2003-02-25 15:41:49Z ru $
1# $FreeBSD: head/sys/boot/i386/gptboot/Makefile 116864 2003-06-26 03:51:57Z peter $
2
3PROG= boot2
4NOMAN=
5STRIP=
6BINDIR?= /boot
7BINMODE= 444
8CLEANFILES= boot boot1 boot1.out boot1.o \
9 boot2.ldr boot2.bin boot2.ld boot2.out boot2.o boot2.h \

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

104 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
105 boot ${DESTDIR}${BINDIR}/boot
106 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
107 boot1 ${DESTDIR}${BINDIR}/boot1
108 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
109 boot2 ${DESTDIR}${BINDIR}/boot2
110
111.include <bsd.prog.mk>
2
3PROG= boot2
4NOMAN=
5STRIP=
6BINDIR?= /boot
7BINMODE= 444
8CLEANFILES= boot boot1 boot1.out boot1.o \
9 boot2.ldr boot2.bin boot2.ld boot2.out boot2.o boot2.h \

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

104 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
105 boot ${DESTDIR}${BINDIR}/boot
106 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
107 boot1 ${DESTDIR}${BINDIR}/boot1
108 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
109 boot2 ${DESTDIR}${BINDIR}/boot2
110
111.include <bsd.prog.mk>
112
113.if defined(REALLY_AMD64)
114boot2.o: machine
115
116beforedepend ${OBJS}: machine
117
118machine:
119 ln -sf ${.CURDIR}/../../../i386/include machine
120
121CLEANFILES+= machine
122.endif
123