xref: /illumos-gate/usr/src/test/os-tests/tests/cores/Makefile.targ (revision cf96e8bf1ffaa8e64318435100a5e29e9d7971c7)
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 2021 Oxide Computer Company
14#
15
16$(ROOTOPTDIR):
17	$(INS.dir)
18
19$(ROOTOPTCORE): $(ROOTOPTDIR)
20	$(INS.dir)
21
22$(ROOTOPTCORE)/%: %
23	$(INS.file)
24
25$(ROOTOPTCORE)/%: %.ksh
26	$(INS.rename)
27
28%.32.o: %.c
29	$(COMPILE.c) $< -o $@
30	$(POST_PROCESS_O)
31
32%.64.o: %.c
33	$(COMPILE64.c) $< -o $@
34	$(POST_PROCESS_O)
35
36%.64: %.64.o
37	$(LINK64.c) -o $@ $< $(LDLIBS64)
38	$(POST_PROCESS)
39
40%.32: %.32.o
41	$(LINK.c) -o $@ $< $(LDLIBS)
42	$(POST_PROCESS)
43
44clobber: clean
45	$(RM) $(PROGS32) $(PROGS64)
46
47clean:
48	$(RM) $(ALLOBJS)
49