xref: /illumos-gate/usr/src/tools/ctf/ctfmerge/Makefile.com (revision 97b5374547d500fded52d886ceba8a9962af0527)
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
24NATIVE_LIBS += libelf.so
25CPPFLAGS += -include ../../common/ctf_headers.h
26CERRWARN += -_gcc=-Wno-unused-variable
27CERRWARN += $(CNOWARN_UNINIT)
28
29OBJS = $(SRCS:%.c=%.o)
30
31all: $(PROG)
32
33$(PROG): $(OBJS)
34	$(LINK.c) $(OBJS) -o $@ $(LDLIBS)
35	$(POST_PROCESS)
36
37%.o: $(SRC)/cmd/ctfmerge/%.c
38	$(COMPILE.c) $<
39
40$(ROOTONBLDMACHPROG): $(PROG)
41
42install: $(ROOTONBLDMACHPROG)
43
44clean:
45	$(RM) $(OBJS) $(LINTFILES)
46
47include $(SRC)/tools/Makefile.targ
48