dmake: do not set MAKEFLAGS=k
[unleashed/tickless.git] / usr / src / cmd / cmd-inet / usr.bin / pppdump / Makefile
blobe8727492b668ab157b049181a9735bd985cef2a5
2 # Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
3 # Copyright 2011 Nexenta Systems, Inc. All rights reserved.
6 PROG= pppdump
7 OBJS= bsd-comp.o deflate.o pppdump.o zlib.o
8 SRCS= $(OBJS:%.o=%.c)
10 include ../../../Makefile.cmd
12 CPPFLAGS += -DPPP_DEFS_IN_NET
14 CERRWARN += -Wno-implicit-function-declaration
15 CERRWARN += -Wno-parentheses
16 CERRWARN += -Wno-unused-variable
17 CERRWARN += -Wno-uninitialized
19 .KEEP_STATE:
21 all: $(PROG)
23 $(PROG): $(OBJS)
24 $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
25 $(POST_PROCESS)
27 install: all $(ROOTPROG)
29 clean:
30 $(RM) $(OBJS)
33 include ../../../Makefile.targ