This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
33 lines
749 B
Makefile
33 lines
749 B
Makefile
# $NetBSD: Makefile,v 1.6 2015/07/23 08:03:25 mrg Exp $
|
|
|
|
LIBISPRIVATE= yes
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
LIB= lisp
|
|
SRCS= bytecode.c core.c debugger.c format.c hash.c helper.c \
|
|
io.c lisp.c math.c package.c pathname.c read.c \
|
|
regex.c require.c stream.c string.c struct.c time.c \
|
|
write.c xedit.c
|
|
|
|
CPPFLAGS+= -DLISP -DLISPDIR=\"${X11LIBDIR}/xedit/lisp\" \
|
|
-I${X11SRCDIR.xedit}/lisp/mp \
|
|
-I${X11SRCDIR.xedit}/lisp/re \
|
|
-I${X11SRCDIR.xedit}
|
|
|
|
.if defined(HAVE_PCC)
|
|
# code uses gcc-specific "label as values" feature
|
|
CPPFLAGS+= -DANSI_SOURCE
|
|
.endif
|
|
|
|
.PATH: ${X11SRCDIR.xedit}/lisp
|
|
|
|
CWARNFLAGS.clang+= -Wno-format
|
|
|
|
# Ugh. writes to const char *
|
|
COPTS.format.c+= -Wno-error
|
|
COPTS.lisp.c+= -Wno-error
|
|
|
|
.include <bsd.x11.mk>
|
|
.include <bsd.lib.mk>
|