diff options
| author | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2003-06-07 08:36:41 +0000 |
|---|---|---|
| committer | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2003-06-07 08:36:41 +0000 |
| commit | d83e355c40cc06a1e530f4539e6edbf9d778bd83 (patch) | |
| tree | 0f5a237f08868209e16f83ba6be380a94ab69756 /sys/boot | |
| parent | 9dc6f426715f98069f4e781bcfdf18416b2e7e19 (diff) | |
Notes
Diffstat (limited to 'sys/boot')
| -rw-r--r-- | sys/boot/pc98/kgzldr/Makefile | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/sys/boot/pc98/kgzldr/Makefile b/sys/boot/pc98/kgzldr/Makefile index 5e1e866e8567..9fed53da63cd 100644 --- a/sys/boot/pc98/kgzldr/Makefile +++ b/sys/boot/pc98/kgzldr/Makefile @@ -1,24 +1,34 @@ # $FreeBSD$ -FILES= kgzldr.o -SRCS= start.s boot.c inflate.c lib.c crt.s sio.s +SRCS= boot.c inflate.c lib.c OBJS= ${SRCS:N*.h:R:S/$/.o/g} CFLAGS= -ffreestanding CFLAGS+=-Os CFLAGS+=-DKZIP LDFLAGS=-nostdlib -static -r -BINDIR= /usr/lib .PATH: ${.CURDIR}/../../../kern .PATH: ${.CURDIR}/../../i386/kgzldr AFLAGS+=--defsym PC98=1 -CLEANFILES=${FILES} +.for asm in start crt sio +OBJS+= ${asm}.o +${asm}.o: ${asm}.s + as -o ${.TARGET} ${.ALLSRC:M*${asm}*} +.endfor + +CLEANFILES=kgzldr.o BOOT_COMCONSOLE_PORT?= 0x238 AFLAGS+=--defsym SIO_PRT=${BOOT_COMCONSOLE_PORT} +all: ${OBJS} kgzldr.o + kgzldr.o: ${OBJS} ${CC} ${LDFLAGS} -o ${.TARGET} ${OBJS} -.include <bsd.prog.mk> +realinstall: + ${INSTALL} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ + kgzldr.o ${DESTDIR}${LIBDIR} + +.include <bsd.lib.mk> |
