]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - bin/cat/Makefile
Merge llvm-project release/17.x llvmorg-17.0.2-0-gb2417f51dbbd
[FreeBSD/FreeBSD.git] / bin / cat / Makefile
1
2 .include <src.opts.mk>
3
4 PACKAGE=runtime
5 PROG=   cat
6
7 .ifdef BOOTSTRAPPING
8 # For the bootstrap cat we disable all wide char support to allow building
9 # on Linux/macOS
10 CFLAGS+=-DBOOTSTRAP_CAT
11 .endif
12
13 HAS_TESTS=
14 SUBDIR.${MK_TESTS}+= tests
15
16 # Temporary disable building cat with Casper.
17 #.if ${MK_CASPER} != "no" && !defined(RESCUE) && !defined(BOOTSTRAPPING)
18 #LIBADD+=        casper
19 #LIBADD+=        cap_fileargs
20 #LIBADD+=        cap_net
21 #CFLAGS+=-DWITH_CASPER
22 #.endif
23 # Depend on Makefile to rebiuld when WITH_CASPER changes
24 cat.o:  Makefile
25
26 .include <bsd.prog.mk>