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 (c) 2012, 2016 by Delphix. All rights reserved. 14# Copyright 2020 Joyent, Inc. 15# Copyright 2021 Tintri by DDN, Inc. All rights reserved. 16# Copyright 2021 OmniOS Community Edition (OmniOSce) Association. 17# Copyright 2024 Oxide Computer Company 18# 19 20SUBDIRS_i386 = i386 imc zen_umc xsave 21 22SUBDIRS = \ 23 cores \ 24 ddi_ufm \ 25 definit \ 26 execvpe \ 27 file-locking \ 28 ilstr \ 29 ksensor \ 30 ksid \ 31 libtopo \ 32 minttl \ 33 pf_key \ 34 poll \ 35 portfs \ 36 regression \ 37 sdevfs \ 38 secflags \ 39 signalfd \ 40 sigqueue \ 41 sockfs \ 42 spoof-ras \ 43 stackalign \ 44 stress \ 45 syscall \ 46 timer \ 47 uccid \ 48 $(SUBDIRS_$(MACH)) 49 50PROGS = \ 51 clock_gettime \ 52 eventfd \ 53 odirectory \ 54 ucontext \ 55 getcontext_extd \ 56 writev 57 58CPPFLAGS += -D_REENTRANT 59PROGS32 = $(PROGS:%=%.32) 60PROGS64 = $(PROGS:%=%.64) 61 62ROOTOPTDIR = $(ROOT)/opt/os-tests/tests 63ROOTOPTPROGS = $(PROGS32:%=$(ROOTOPTDIR)/%) \ 64 $(PROGS64:%=$(ROOTOPTDIR)/%) \ 65 $(SCRIPTS:%=$(ROOTOPTDIR)/%) 66 67odirectory.32 := LDLIBS += -lsocket 68odirectory.64 := LDLIBS64 += -lsocket 69 70clock_gettime.32 := LDLIBS += -lproc 71clock_gettime.32 := CSTD = $(CSTD_GNU99) 72clock_gettime.64 := LDLIBS64 += -lproc 73clock_gettime.64 := CSTD = $(CSTD_GNU99) 74 75ucontext.32 := SMOFF += unreachable 76ucontext.64 := SMOFF += unreachable 77 78writev.32 := CPPFLAGS += -D_FILE_OFFSET_BITS=64 79writev.32 := CSTD = $(CSTD_GNU99) 80writev.64 := CSTD = $(CSTD_GNU99) 81 82include $(SRC)/cmd/Makefile.cmd 83 84all := TARGET = all 85install := TARGET = install 86clean := TARGET = clean 87clobber := TARGET = clobber 88 89.KEEP_STATE: 90 91install: $(SUBDIRS) $(ROOTOPTPROGS) 92 93all: $(SUBDIRS) $(PROGS32) $(PROGS64) 94 95clean: $(SUBDIRS) 96 97$(ROOTOPTPROGS): $(PROGS32) $(PROGS64) $(ROOTOPTDIR) 98 99$(ROOTOPTDIR): 100 $(INS.dir) 101 102$(ROOTOPTDIR)/%: % 103 $(INS.file) 104 105$(ROOTOPTDIR)/%: %.ksh 106 $(INS.rename) 107 108%.64: %.c 109 $(LINK64.c) -o $@ $< $(LDLIBS64) 110 $(POST_PROCESS) 111 112%.32: %.c 113 $(LINK.c) -o $@ $< $(LDLIBS) 114 $(POST_PROCESS) 115 116clobber: $(SUBDIRS) 117 $(RM) $(PROGS32) $(PROGS64) 118 119$(SUBDIRS): FRC 120 @cd $@; pwd; $(MAKE) $(TARGET) 121 122FRC: 123