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