Makefile revision 1.4
1# $NetBSD: Makefile,v 1.4 2018/07/13 07:56:29 maxv Exp $ 2 3.PATH: ${.CURDIR}/arch 4 5PROG= tprof 6MAN= tprof.8 7SRCS= tprof.c 8 9.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64" 10SRCS+= tprof_x86.c 11.else 12SRCS+= tprof_noarch.c 13.endif 14 15CPPFLAGS+= -I${NETBSDSRCDIR}/sys/ 16 17LDADD+= -lpthread 18DPADD+= ${LIBPTHREAD} 19 20.include <bsd.own.mk> 21.include <bsd.prog.mk> 22