1# @(#)Makefile 8.1 (Berkeley) 5/31/93 2# $FreeBSD$ 3 4.include <src.opts.mk> 5 6PACKAGE=runtime 7PROG= cat 8 9.ifdef BOOTSTRAPPING 10# For the bootstrap cat we disable all wide char support to allow building 11# on Linux/macOS 12CFLAGS+=-DBOOTSTRAP_CAT 13.endif 14 15HAS_TESTS= 16SUBDIR.${MK_TESTS}+= tests 17 18.include <bsd.prog.mk> 19