xref: /illumos-gate/usr/src/tools/ctf/ctfmerge/Makefile.com (revision d3b5f56344d8bfcdd6cfb82446af0e5e55ad9ebe)
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
12PROG = ctfmerge
13SRCS = ctfmerge.c
14
15include ../../Makefile.ctf
16
17CFLAGS += $(CCVERBOSE)
18LDLIBS += -lctf -lelf
19
20LDFLAGS += \
21	-L$(ROOTONBLDLIBMACH) \
22	'-R$$ORIGIN/../../lib/$(MACH)' \
23
24CPPFLAGS += -include ../../common/ctf_headers.h
25CERRWARN += -_gcc=-Wno-unused-variable
26CERRWARN += $(CNOWARN_UNINIT)
27
28OBJS = $(SRCS:%.c=%.o)
29
30all: $(PROG)
31
32$(PROG): $(OBJS)
33	$(LINK.c) $(OBJS) -o $@ $(LDLIBS)
34	$(POST_PROCESS)
35
36%.o: $(SRC)/cmd/ctfmerge/%.c
37	$(COMPILE.c) $<
38
39$(ROOTONBLDMACHPROG): $(PROG)
40
41install: $(ROOTONBLDMACHPROG)
42
43clean:
44	$(RM) $(OBJS) $(LINTFILES)
45
46include $(SRC)/tools/Makefile.targ
47