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 2015 Garrett D'Amore <garrett@damore.org> 14# Copyright (c) 2012 by Delphix. All rights reserved. 15# 16 17include $(SRC)/Makefile.master 18 19CFGS = README \ 20 compilation.cfg \ 21 symbols/README \ 22 symbols/ctype_h.cfg \ 23 symbols/dirent_h.cfg \ 24 symbols/fcntl_h.cfg \ 25 symbols/locale_h.cfg \ 26 symbols/math_h.cfg \ 27 symbols/netdb_h.cfg \ 28 symbols/pthread_h.cfg \ 29 symbols/signal_h.cfg \ 30 symbols/stdio_h.cfg \ 31 symbols/stdlib_h.cfg \ 32 symbols/strings_h.cfg \ 33 symbols/sys_stat_h.cfg \ 34 symbols/sys_time_h.cfg \ 35 symbols/sys_timeb_h.cfg \ 36 symbols/ucontext_h.cfg \ 37 symbols/unistd_h.cfg \ 38 symbols/wchar_h.cfg \ 39 symbols/wctype_h.cfg 40 41ROOTOPTPKG = $(ROOT)/opt/libc-tests 42ROOTOPTPKGCFG = $(ROOT)/opt/libc-tests/cfg 43ROOTOPTPKGDIRS = $(ROOTOPTPKG) \ 44 $(ROOTOPTPKGCFG) \ 45 $(ROOTOPTPKGCFG)/symbols 46 47FILES = $(CFGS:%=$(ROOTOPTPKGCFG)/%) 48$(FILES) := FILEMODE = 0444 49 50all: $(CFGS) 51 52install: $(ROOTOPTPKG) $(ROOTOPTPKGCFG) $(FILES) 53 54clean lint clobber: 55 56$(ROOTOPTPKGDIRS): 57 $(INS.dir) 58 59$(ROOTOPTPKGCFG)/%: % $(ROOTOPTPKGDIRS) 60 $(INS.file) 61