NetBSD/gnu/usr.bin/groff/Makefile.cfg

53 lines
1.4 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile.cfg,v 1.24 1998/04/14 20:30:27 cgd Exp $
1993-11-03 19:29:57 +03:00
.if defined(PROG)
LDADD+= -lgnumalloc
DPADD+= /usr/lib/libgnumalloc.a
.endif
NOLINT= nolint (c++)
1993-07-15 00:36:42 +04:00
# Paths to libraries
#
# DEVICES_ is defined in devices/Makefile.inc to avoid this section.
.if !defined(DEVICES_)
1993-12-28 13:59:05 +03:00
LIBGROFF!=cd $(.CURDIR)/../libgroff; \
printf "xxx: .MAKE\n\t@echo \$${.OBJDIR}/libgroff.a\n" | ${MAKE} -s -f-
1993-07-15 00:36:42 +04:00
1993-12-28 13:59:05 +03:00
LIBDRIVER!=cd $(.CURDIR)/../libdriver; \
printf "xxx: .MAKE\n\t@echo \$${.OBJDIR}/libdriver.a\n" | ${MAKE} -s -f-
1993-07-15 00:36:42 +04:00
1993-12-28 13:59:05 +03:00
LIBBIB!=cd $(.CURDIR)/../libbib; \
printf "xxx: .MAKE\n\t@echo \$${.OBJDIR}/libbib.a\n" | ${MAKE} -s -f-
.endif
1993-07-15 00:36:42 +04:00
1997-10-25 14:10:19 +04:00
CPPFLAGS+= -DHAVE_UNISTD_H=1\
1993-07-15 00:36:42 +04:00
-DHAVE_DIRENT_H=1\
-DHAVE_LIMITS_H=1\
-DHAVE_STDLIB_H=1\
-DHAVE_SYS_DIR_H=1\
-DHAVE_CC_LIMITS_H=1\
-DHAVE_CC_UNISTD_H=1\
-DUNISTD_H_DECLARES_GETOPT=1\
-DSTDLIB_H_DECLARES_PUTENV=1\
-DRETSIGTYPE=void\
-DHAVE_MMAP=1\
-DHAVE_RENAME=1\
-DHAVE_MKSTEMP=1\
-DHAVE_SYS_SIGLIST=1
1993-07-15 00:36:42 +04:00
# XXX NetBSD/Alpha's (cygnus snapshot) g++ doesn't allow virtual functions
# which aren't declared inline to be later defined as inline without a
# warning (-> error).
.if (${MACHINE_ARCH} == "alpha")
CXXFLAGS+= -DBROKEN_GXX_VIRTUAL_INLINE
.endif
# XXX This won't necessarily work if running a parallel make, but does
# XXX work here because each subdir builds at most one .cc file from a .y.
YFLAGS+= -d
1993-07-15 00:36:42 +04:00
.y.cc:
$(YACC) $(YFLAGS) $(.IMPSRC)
mv y.tab.c $(.PREFIX).cc
mv y.tab.h $(.PREFIX).tab.h