a5c89047c0
NetBSD Foundation Membership still pending.) This stack was written by Iain under sponsorship from Itronix Inc. The stack includes support for rfcomm networking (networking via your bluetooth enabled cell phone), hid devices (keyboards/mice), and headsets. Drivers for both PCMCIA and USB bluetooth controllers are included.
137 lines
3.3 KiB
Makefile
137 lines
3.3 KiB
Makefile
# $NetBSD: bsd.hostprog.mk,v 1.47 2006/06/19 15:44:44 gdamore Exp $
|
|
# @(#)bsd.prog.mk 8.2 (Berkeley) 4/2/94
|
|
|
|
.include <bsd.init.mk>
|
|
.include <bsd.sys.mk>
|
|
|
|
##### Basic targets
|
|
clean: cleanprog
|
|
|
|
##### Default values
|
|
LIBBLUETOOTH?= /usr/lib/libbluetooth.a
|
|
LIBBZ2?= /usr/lib/libbz2.a
|
|
LIBC?= /usr/lib/libc.a
|
|
LIBC_PIC?= /usr/lib/libc_pic.a
|
|
LIBCDK?= /usr/lib/libcdk.a
|
|
LIBCOMPAT?= /usr/lib/libcompat.a
|
|
LIBCRYPT?= /usr/lib/libcrypt.a
|
|
LIBCURSES?= /usr/lib/libcurses.a
|
|
LIBDBM?= /usr/lib/libdbm.a
|
|
LIBDES?= /usr/lib/libdes.a
|
|
LIBEDIT?= /usr/lib/libedit.a
|
|
LIBEVENT?= /usr/lib/libevent.a
|
|
LIBFORM?= /usr/lib/libform.a
|
|
LIBGCC?= /usr/lib/libgcc.a
|
|
LIBGNUMALLOC?= /usr/lib/libgnumalloc.a
|
|
LIBINTL?= /usr/lib/libintl.a
|
|
LIBIPSEC?= /usr/lib/libipsec.a
|
|
LIBKVM?= /usr/lib/libkvm.a
|
|
LIBL?= /usr/lib/libl.a
|
|
LIBM?= /usr/lib/libm.a
|
|
LIBMAGIC?= /usr/lib/libmagic.a
|
|
LIBMENU?= /usr/lib/libmenu.a
|
|
LIBMP?= /usr/lib/libmp.a
|
|
LIBNTP?= /usr/lib/libntp.a
|
|
LIBOBJC?= /usr/lib/libobjc.a
|
|
LIBPC?= /usr/lib/libpc.a
|
|
LIBPCAP?= /usr/lib/libpcap.a
|
|
LIBPCI?= /usr/lib/libpci.a
|
|
LIBPLOT?= /usr/lib/libplot.a
|
|
LIBPOSIX?= /usr/lib/libposix.a
|
|
LIBRESOLV?= /usr/lib/libresolv.a
|
|
LIBRPCSVC?= /usr/lib/librpcsvc.a
|
|
LIBSDP?= /usr/lib/libsdp.a
|
|
LIBSKEY?= /usr/lib/libskey.a
|
|
LIBSTDCPP?= /usr/lib/libstdc++.a
|
|
LIBTERMCAP?= /usr/lib/libtermcap.a
|
|
LIBUTIL?= /usr/lib/libutil.a
|
|
LIBWRAP?= /usr/lib/libwrap.a
|
|
LIBY?= /usr/lib/liby.a
|
|
LIBZ?= /usr/lib/libz.a
|
|
|
|
HOST_MKDEP?= CC=${HOST_CC:Q} mkdep
|
|
MKDEP_SUFFIXES?= .lo .ln
|
|
|
|
# Override these:
|
|
INSTALL:= ${INSTALL:NSTRIP=*}
|
|
MKDEP:= ${HOST_MKDEP}
|
|
|
|
.if ${TOOLCHAIN_MISSING} == "no" || defined(EXTERNAL_TOOLCHAIN)
|
|
OBJHOSTMACHINE= # set
|
|
.endif
|
|
|
|
##### Build rules
|
|
.if defined(HOSTPROG_CXX)
|
|
HOSTPROG= ${HOSTPROG_CXX}
|
|
.endif
|
|
|
|
.if defined(HOSTPROG)
|
|
SRCS?= ${HOSTPROG}.c
|
|
|
|
_YHPSRCS= ${SRCS:M*.[ly]:C/\..$/.c/} ${YHEADER:D${SRCS:M*.y:.y=.h}}
|
|
DPSRCS+= ${_YHPSRCS}
|
|
CLEANFILES+= ${_YHPSRCS}
|
|
|
|
.if !empty(SRCS:N*.h:N*.sh)
|
|
OBJS+= ${SRCS:N*.h:N*.sh:R:S/$/.lo/g}
|
|
LOBJS+= ${LSRCS:.c=.ln} ${SRCS:M*.c:.c=.ln}
|
|
.endif
|
|
|
|
.if defined(OBJS) && !empty(OBJS)
|
|
.NOPATH: ${OBJS} ${HOSTPROG} ${_YHPSRCS}
|
|
|
|
${OBJS} ${LOBJS}: ${DPSRCS}
|
|
${HOSTPROG}: ${OBJS} ${DPADD}
|
|
${_MKTARGET_LINK}
|
|
${HOST_LINK.c} ${HOST_LDSTATIC} -o ${.TARGET} ${OBJS} ${LDADD}
|
|
|
|
.endif # defined(OBJS) && !empty(OBJS)
|
|
|
|
.if !defined(MAN)
|
|
MAN= ${HOSTPROG}.1
|
|
.endif # !defined(MAN)
|
|
.endif # defined(HOSTPROG)
|
|
|
|
realall: ${HOSTPROG}
|
|
|
|
cleanprog: .PHONY
|
|
rm -f a.out [Ee]rrs mklog core *.core \
|
|
${HOSTPROG} ${OBJS} ${LOBJS} ${CLEANFILES}
|
|
|
|
beforedepend:
|
|
CFLAGS:= ${HOST_CFLAGS}
|
|
CPPFLAGS:= ${HOST_CPPFLAGS}
|
|
|
|
lint: ${LOBJS}
|
|
.if defined(LOBJS) && !empty(LOBJS)
|
|
${LINT} ${LINTFLAGS} ${LDFLAGS:C/-L[ ]*/-L/Wg:M-L*} ${LOBJS} ${LDADD}
|
|
.endif
|
|
|
|
##### Pull in related .mk logic
|
|
.include <bsd.man.mk>
|
|
.include <bsd.nls.mk>
|
|
.include <bsd.files.mk>
|
|
.include <bsd.inc.mk>
|
|
.include <bsd.links.mk>
|
|
.include <bsd.dep.mk>
|
|
|
|
${TARGETS}: # ensure existence
|
|
|
|
# Override YACC/LEX rules so nbtool_config.h can be forced as the 1st include
|
|
.l.c:
|
|
${_MKTARGET_LEX}
|
|
${LEX.l} -o${.TARGET} ${.IMPSRC}
|
|
echo '#if HAVE_NBTOOL_CONFIG_H' > ${.TARGET}.1
|
|
echo '#include "nbtool_config.h"' >> ${.TARGET}.1
|
|
echo '#endif' >> ${.TARGET}.1
|
|
cat ${.TARGET} >> ${.TARGET}.1
|
|
mv ${.TARGET}.1 ${.TARGET}
|
|
.y.c:
|
|
${_MKTARGET_YACC}
|
|
${YACC.y} -o ${.TARGET} ${.IMPSRC}
|
|
echo '#if HAVE_NBTOOL_CONFIG_H' > ${.TARGET}.1
|
|
echo '#include "nbtool_config.h"' >> ${.TARGET}.1
|
|
echo '#endif' >> ${.TARGET}.1
|
|
cat ${.TARGET} >> ${.TARGET}.1
|
|
mv ${.TARGET}.1 ${.TARGET}
|