NetBSD/lib/libarch/Makefile

26 lines
575 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.20 2002/11/26 14:30:53 pk Exp $
1993-09-19 22:52:40 +04:00
2002-03-30 09:24:34 +03:00
# These should always be a MACHINE_CPU value
ARCHDIRS= alpha arm i386 m68k sparc x86_64
.for arch in ${ARCHDIRS}
2002-03-30 09:24:34 +03:00
.include "${.CURDIR}/${arch}/Makefile.inc"
.PATH: ${.CURDIR}/${arch}
.endfor
OBJS+= ${ASM}
POBJS+= ${ASM:.o=.po}
CLEANFILES+= ${ASM} ${POBJS}
1993-09-19 22:52:40 +04:00
# Build the library if SRCS is now defined ...
.if defined(SRCS)
2002-03-30 09:24:34 +03:00
LIB= ${MACHINE_CPU}
2001-07-14 07:18:33 +04:00
SHLIB_VERSION_FILE= ${.CURDIR}/${LIB}/shlib_version
.include <bsd.lib.mk>
.else
# ... otherwise just build the manpages
.include <bsd.man.mk>
.endif
.include <bsd.subdir.mk>