blob: 7198a304805d1d6c1ed4b38f60d6c3a8fc093449 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $FreeBSD: src/usr.bin/rpcgen/Makefile,v 1.7 2002/07/14 17:55:35 alfred Exp $
PROG= rpcgen
SRCS= rpc_main.c rpc_clntout.c rpc_cout.c rpc_hout.c rpc_parse.c \
rpc_sample.c rpc_scan.c rpc_svcout.c rpc_tblout.c rpc_util.c
WARNS?= 2
#
# This is a kludge to work around the fact that this program
# uses 'inline' as a variable name.
#
CFLAGS+=-Dinline=rpcgen_inline
.include <bsd.prog.mk>
|