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
9# http://www.illumos.org/license/CDDL.
10#
11
12#
13# Copyright 2014 Garrett D'Amore <garrett@damore.org>
14# Copyright 2018, Joyent, Inc.
15#
16
17include $(SRC)/Makefile.master
18
19TESTSUBDIR = symbols
20PROG = symbols_test
21KSHPROG = setup
22SYMTESTS = \
23	assert_h \
24	ctype_h \
25	dirent_h \
26	fcntl_h \
27	locale_h \
28	math_h \
29	netdb_h \
30	pthread_h \
31	stdalign_h \
32	stddef_h \
33	signal_h \
34	stdio_h \
35	stdlib_h \
36	stdnoreturn_h \
37	string_h \
38	strings_h \
39	sys_atomic_h \
40	sys_mman_h \
41	sys_stat_h \
42	sys_time_h \
43	sys_timeb_h \
44	time_h \
45	threads_h \
46	ucontext_h \
47	unistd_h \
48	wchar_h \
49	wctype_h
50
51EXTRAPROG += $(SYMTESTS)
52
53include ../Makefile.com
54
55LDLIBS += -lcustr
56LDLIBS64 += -lcustr
57
58$(SYMTESTS:%=$(TESTDIR)/%): $(TESTDIR)/setup
59	-$(RM) $@
60	$(LN) $(TESTDIR)/setup $@
61