Makefiles need to specify C99 mode consistently
[unleashed.git] / usr / src / test / os-tests / tests / sockfs / Makefile
blob6e005437699bd2daee5c81deb1551aeabea64914
2 # This file and its contents are supplied under the terms of the
3 # Common Development and Distribution License ("CDDL"), version 1.0.
4 # You may only use this file in accordance with the terms of version
5 # 1.0 of the CDDL.
7 # A full copy of the text of the CDDL should have accompanied this
8 # source. A copy of the CDDL is also available via the Internet at
9 # http://www.illumos.org/license/CDDL.
13 # Copyright (c) 2012 by Delphix. All rights reserved.
14 # Copyright 2017 Gordon W. Ross
17 include $(SRC)/cmd/Makefile.cmd
18 include $(SRC)/test/Makefile.com
20 PROG = conn dgram drop_priv nosignal sockpair
22 CSTD = $(CSTD_GNU99)
23 CPPFLAGS += -D_XOPEN_SOURCE=600 -D__EXTENSIONS__
25 nosignal := LDLIBS += -lnsl
26 nosignal.ln := LDLIBS += -lnsl
28 ROOTOPTPKG = $(ROOT)/opt/os-tests
29 TESTDIR = $(ROOTOPTPKG)/tests/sockfs
31 CMDS = $(PROG:%=$(TESTDIR)/%)
32 $(CMDS) := FILEMODE = 0555
34 all: $(PROG)
36 install: $(CMDS)
38 clobber: clean
39 -$(RM) $(PROG)
41 clean:
43 $(CMDS): $(TESTDIR) $(PROG)
45 $(TESTDIR):
46 $(INS.dir)
48 $(TESTDIR)/%: %
49 $(INS.file)