8355 need libc regex tests
[unleashed.git] / usr / src / test / libc-tests / tests / Makefile
blob160e9a93838165d9b6f5b95ddb1ead97ff870f99
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 2015 Garrett D'Amore <garrett@damore.org>
15 # Copyright 2016 Joyent, Inc.
18 SUBDIRS = \
19 catopen \
20 fpround \
21 newlocale \
22 nl_langinfo \
23 priv_gettext \
24 random \
25 regex \
26 select \
27 strerror \
28 symbols \
29 threads \
30 wcsrtombs \
31 wctype
33 PROGS = \
34 aligned_alloc \
35 c11_threads \
36 c11_tss \
37 call_once \
38 endian \
39 env-7076 \
40 psignal-5097 \
41 quick_exit_order \
42 quick_exit_status \
43 strcoll-strxfrm-6907 \
44 timespec_get \
45 wcsncasecmp \
46 wcsncasecmp-7344 \
47 wcsncasecmp-7350
49 SCRIPTS = \
50 quick_exit \
51 psignal
53 CPPFLAGS += -D_REENTRANT
55 PROGS32 = $(PROGS:%=%.32)
56 PROGS64 = \
57 $(PROGS:%=%.64) \
58 printf-6961.64
60 aligned_alloc.32 := LDLIBS += -lproc
61 aligned_alloc.64 := LDLIBS64 += -lproc
63 ROOTOPTDIR = $(ROOT)/opt/libc-tests/tests
64 ROOTOPTPROGS = $(PROGS32:%=$(ROOTOPTDIR)/%) \
65 $(PROGS64:%=$(ROOTOPTDIR)/%) \
66 $(SCRIPTS:%=$(ROOTOPTDIR)/%)
68 include $(SRC)/cmd/Makefile.cmd
70 all := TARGET = all
71 install := TARGET = install
72 clean := TARGET = clean
73 clobber := TARGET = clobber
74 lint := TARGET = lint
76 .KEEP_STATE:
78 install: $(SUBDIRS) $(ROOTOPTPROGS)
80 all: $(SUBDIRS) $(PROGS32) $(PROGS64)
82 clean lint: $(SUBDIRS)
84 $(ROOTOPTPROGS): $(PROGS32) $(PROGS64) $(ROOTOPTDIR)
86 $(ROOTOPTDIR):
87 $(INS.dir)
89 $(ROOTOPTDIR)/%: %
90 $(INS.file)
92 $(ROOTOPTDIR)/%: %.ksh
93 $(INS.rename)
95 %.64: %.c
96 $(LINK64.c) -o $@ $< $(LDLIBS64)
97 $(POST_PROCESS)
99 %.32: %.c
100 $(LINK.c) -o $@ $< $(LDLIBS)
101 $(POST_PROCESS)
103 clobber: $(SUBDIRS)
104 $(RM) $(PROGS32) $(PROGS64)
106 $(SUBDIRS): FRC
107 @cd $@; pwd; $(MAKE) $(TARGET)
109 FRC: