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 = ctfdiff 13SRCS = ctfdiff.c 14 15include ../../Makefile.ctf 16 17CFLAGS += $(CCVERBOSE) 18LDLIBS += -lctf 19NATIVE_LIBS += libc.so 20 21LDFLAGS = \ 22 -L$(ROOTONBLDLIBMACH) \ 23 '-R$$ORIGIN/../../lib/$(MACH)' \ 24 $(BDIRECT) 25 26CPPFLAGS += -include ../../common/ctf_headers.h 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/ctfdiff/%.c 37 $(COMPILE.c) $< 38 39$(ROOTONBLDMACHPROG): $(PROG) 40 41install: $(ROOTONBLDMACHPROG) 42 43clean: 44 $(RM) $(OBJS) $(LINTFILES) 45 46include $(SRC)/tools/Makefile.targ 47