diff options
Diffstat (limited to 'usr/src/cmd/pgrep/Makefile')
-rw-r--r-- | usr/src/cmd/pgrep/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/usr/src/cmd/pgrep/Makefile b/usr/src/cmd/pgrep/Makefile index 67993f0ff2..09fb900da7 100644 --- a/usr/src/cmd/pgrep/Makefile +++ b/usr/src/cmd/pgrep/Makefile @@ -22,6 +22,8 @@ # Copyright 2009 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # +# Copyright 2019 Joyent, Inc. +# PROG = pgrep PKILLFILE = pkill @@ -31,13 +33,14 @@ ROOTLINKS = $(ROOTBIN)/$(PKILLFILE) OBJS = pgrep.o idtab.o psexp.o SRCS = $(OBJS:.o=.c) POFILES = $(OBJS:.o=.po) -lint := LINTFLAGS = -ux include ../Makefile.cmd CLOBBERFILES += $(PKILLFILE) + CFLAGS += $(CCVERBOSE) -CERRWARN += -_gcc=-Wno-parentheses +CSTD = $(CSTD_GNU99) + LDLIBS += -luutil -lproject -lcontract POFILE = ppgrep.po @@ -69,6 +72,4 @@ $(ROOTLINKS): $(ROOTPROG) clean: $(RM) $(OBJS) -lint: lint_SRCS - include ../Makefile.targ |