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
32 lines
525 B
Makefile
32 lines
525 B
Makefile
help2man = @HELP2MAN@
|
|
|
|
info_TEXINFOS = flex.texi
|
|
dist_man_MANS = flex.1
|
|
dist_doc_DATA= flex.pdf
|
|
|
|
CLEANFILES = \
|
|
flex.aux \
|
|
flex.cp \
|
|
flex.cps \
|
|
flex.fn \
|
|
flex.fns \
|
|
flex.hk \
|
|
flex.hks \
|
|
flex.ky \
|
|
flex.log \
|
|
flex.op \
|
|
flex.ops \
|
|
flex.pg \
|
|
flex.toc \
|
|
flex.tp \
|
|
flex.tps \
|
|
flex.vr \
|
|
flex.vrs
|
|
|
|
$(dist_man_MANS): $(top_srcdir)/main.c
|
|
for i in $(dist_man_MANS) ; do \
|
|
$(help2man) --name='$(PACKAGE_NAME)' \
|
|
--section=`echo $$i | sed -e 's/.*\.\([^.]*\)$$/\1/'` \
|
|
../flex$(EXEEXT) > $$i || rm -f $$i ; \
|
|
done
|