Makefile (dfc11533) Makefile (bd0ce624)
1#
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.
6#
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

--- 12 unchanged lines hidden (view full) ---

21KSHFILES :sh= ls *.ksh
22KSHPROGS = $(KSHFILES:%.ksh=%)
23SRCS :sh= ls *.c
24CPROGS = $(SRCS:%.c=%.exe)
25PROGS = $(KSHPROGS) $(CPROGS)
26FILES :sh= ls *.zcp *.out *.err
27LDLIBS = $(LDLIBS.cmd)
28LDLIBS += -lzfs_core -lnvpair
1#
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.
6#
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

--- 12 unchanged lines hidden (view full) ---

21KSHFILES :sh= ls *.ksh
22KSHPROGS = $(KSHFILES:%.ksh=%)
23SRCS :sh= ls *.c
24CPROGS = $(SRCS:%.c=%.exe)
25PROGS = $(KSHPROGS) $(CPROGS)
26FILES :sh= ls *.zcp *.out *.err
27LDLIBS = $(LDLIBS.cmd)
28LDLIBS += -lzfs_core -lnvpair
29C99MODE = -xc99=%all
29CSTD = $(CSTD_GNU99)
30
31INSTPROGS = $(PROGS:%=$(TESTDIR)/%)
32INSTFILES = $(FILES:%=$(TESTDIR)/%)
33
34OBJS = $(SRCS:%.c=%.o)
35
36$(INSTPROGS) := FILEMODE = 0555
37$(INSTFILES) := FILEMODE = 0444

--- 31 unchanged lines hidden ---
30
31INSTPROGS = $(PROGS:%=$(TESTDIR)/%)
32INSTFILES = $(FILES:%=$(TESTDIR)/%)
33
34OBJS = $(SRCS:%.c=%.o)
35
36$(INSTPROGS) := FILEMODE = 0555
37$(INSTFILES) := FILEMODE = 0444

--- 31 unchanged lines hidden ---