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 19 20LDFLAGS = \ 21 -L$(ROOTONBLDLIBMACH) \ 22 '-R$$ORIGIN/../../lib/$(MACH)' \ 23 24CPPFLAGS += -include ../../common/ctf_headers.h 25 26OBJS = $(SRCS:%.c=%.o) 27 28all: $(PROG) 29 30$(PROG): $(OBJS) 31 $(LINK.c) $(OBJS) -o $@ $(LDLIBS) 32 $(POST_PROCESS) 33 34%.o: $(SRC)/cmd/ctfdiff/%.c 35 $(COMPILE.c) $< 36 37$(ROOTONBLDMACHPROG): $(PROG) 38 39install: $(ROOTONBLDMACHPROG) 40 41clean: 42 $(RM) $(OBJS) $(LINTFILES) 43 44include $(SRC)/tools/Makefile.targ 45