2a53f3fb35
Get rid of the INTERNALSTATICLIB knob and just use plain INTERNALLIB. INTERNALLIB now means to build static library only and don't install anything. Added a NOINSTALLLIB knob for libpam/modules. To not build any library at all, just do not set LIB.
36 lines
770 B
Makefile
36 lines
770 B
Makefile
# $FreeBSD$
|
|
|
|
LIB= arc
|
|
INTERNALLIB= true
|
|
|
|
CFLAGS+= -ffreestanding
|
|
.PATH: ${.CURDIR}/arch/${MACHINE_ARCH}
|
|
# XXX hack to pick up stand.h
|
|
LIBSTANDDIR= ${.CURDIR}/../../../../lib/libstand
|
|
CFLAGS+= -I${LIBSTANDDIR}
|
|
CFLAGS+= -DDEBUG
|
|
|
|
# Pick up the bootstrap header for some interface items
|
|
CFLAGS+= -I${.CURDIR}/../../common -mno-fp-regs \
|
|
-I${.CURDIR}/../../.. -I${.CURDIR}/../include
|
|
|
|
#CFLAGS+= -DDISK_DEBUG
|
|
#CPPFLAGS+= -DNO_DISKLABEL
|
|
#CPPFLAGS+= -DSAVE_MEMORY
|
|
|
|
SRCS= delay.c time.c abort.c setjmperr.c copy.c devicename.c module.c \
|
|
arcconsole.c arcdisk.c elf_freebsd.c bootinfo.c
|
|
|
|
.if ${MACHINE_ARCH} == "alpha"
|
|
SRCS+= rpb.c
|
|
.endif
|
|
|
|
CLEANFILES+= machine
|
|
|
|
machine:
|
|
ln -sf ${.CURDIR}/../../../alpha/include machine
|
|
|
|
.include <bsd.lib.mk>
|
|
|
|
beforedepend ${OBJS}: machine
|