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
29 lines
727 B
Makefile
29 lines
727 B
Makefile
# $NetBSD: Makefile,v 1.5 2015/07/19 19:49:18 mrg Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= xedit
|
|
SRCS= xedit.c commands.c util.c ispell.c options.c hook.c lisp.c \
|
|
tags.c hash.c
|
|
|
|
CPPFLAGS+= -I${X11SRCDIR.xedit}/lisp/re
|
|
CPPFLAGS+= -DHAVE_GETPAGESIZE
|
|
|
|
APPDEFS= Xedit Xedit-color
|
|
|
|
.for _L in lisp mp re
|
|
LIB.${_L}!= cd ${.CURDIR}/../${_L} && ${PRINTOBJDIR}
|
|
DPADD+= ${LIB.${_L}}/lib${_L}.a
|
|
LDADD+= -L${LIB.${_L}} -l${_L}
|
|
.endfor
|
|
|
|
LDADD+= -lXaw -lXmu -lXt -lSM -lICE -lXpm -lXext -lX11 -lm
|
|
DPADD+= ${LIBXAW} ${LIBXMU} ${LIBXT} ${LIBSM} ${LIBICE} \
|
|
${LIBXPM} ${LIBXEXT} ${LIBX11} ${LIBM}
|
|
|
|
.PATH: ${X11SRCDIR.${PROG}} ${X11SRCDIR.${PROG}}/app-defaults
|
|
.PATH: ${X11SRCDIR.${PROG}}/man
|
|
|
|
.include <bsd.x11.mk>
|
|
.include <bsd.prog.mk>
|