1*bc1f688bSRobert Mustacchi# 2*bc1f688bSRobert Mustacchi# This file and its contents are supplied under the terms of the 3*bc1f688bSRobert Mustacchi# Common Development and Distribution License ("CDDL"), version 1.0. 4*bc1f688bSRobert Mustacchi# You may only use this file in accordance with the terms of version 5*bc1f688bSRobert Mustacchi# 1.0 of the CDDL. 6*bc1f688bSRobert Mustacchi# 7*bc1f688bSRobert Mustacchi# A full copy of the text of the CDDL should have accompanied this 8*bc1f688bSRobert Mustacchi# source. A copy of the CDDL is also available via the Internet at 9*bc1f688bSRobert Mustacchi# http://www.illumos.org/license/CDDL. 10*bc1f688bSRobert Mustacchi# 11*bc1f688bSRobert Mustacchi 12*bc1f688bSRobert Mustacchi# 13*bc1f688bSRobert Mustacchi# Copyright (c) 2015, Joyent, Inc. All rights reserved. 14*bc1f688bSRobert Mustacchi# 15*bc1f688bSRobert Mustacchi 16*bc1f688bSRobert Mustacchi# 17*bc1f688bSRobert Mustacchi# This Makefile is shared between both the tools and the normal library build. 18*bc1f688bSRobert Mustacchi# 19*bc1f688bSRobert Mustacchi 20*bc1f688bSRobert Mustacchipics/%.o: $(SRC)/common/ctf/%.c 21*bc1f688bSRobert Mustacchi $(COMPILE.c) -o $@ $< 22*bc1f688bSRobert Mustacchi $(POST_PROCESS_O) 23*bc1f688bSRobert Mustacchi 24*bc1f688bSRobert Mustacchipics/%.o: $(SRC)/common/list/%.c 25*bc1f688bSRobert Mustacchi $(COMPILE.c) -o $@ $< 26*bc1f688bSRobert Mustacchi $(POST_PROCESS_O) 27*bc1f688bSRobert Mustacchi 28*bc1f688bSRobert Mustacchipics/%.o: $(SRC)/lib/mergeq/%.c 29*bc1f688bSRobert Mustacchi $(COMPILE.c) -o $@ $< 30*bc1f688bSRobert Mustacchi $(POST_PROCESS_O) 31