1*263f549eSPatrick Mooney# 2*263f549eSPatrick Mooney# This file and its contents are supplied under the terms of the 3*263f549eSPatrick Mooney# Common Development and Distribution License ("CDDL"), version 1.0. 4*263f549eSPatrick Mooney# You may only use this file in accordance with the terms of version 5*263f549eSPatrick Mooney# 1.0 of the CDDL. 6*263f549eSPatrick Mooney# 7*263f549eSPatrick Mooney# A full copy of the text of the CDDL should have accompanied this 8*263f549eSPatrick Mooney# source. A copy of the CDDL is also available via the Internet at 9*263f549eSPatrick Mooney# http://www.illumos.org/license/CDDL. 10*263f549eSPatrick Mooney# 11*263f549eSPatrick Mooney 12*263f549eSPatrick Mooney# 13*263f549eSPatrick Mooney# Copyright 2016 Joyent, Inc. 14*263f549eSPatrick Mooney# 15*263f549eSPatrick Mooney 16*263f549eSPatrick Mooney# 17*263f549eSPatrick Mooney# This Makefile is shared between both libc and other consumers 18*263f549eSPatrick Mooney# 19*263f549eSPatrick Mooney 20*263f549eSPatrick MooneyCOMMPAGE_OBJS = \ 21*263f549eSPatrick Mooney cp_subr.o \ 22*263f549eSPatrick Mooney cp_main.o 23*263f549eSPatrick Mooney 24*263f549eSPatrick MooneyCOMMPAGE_OFFSETS_SRC = $(SRC)/lib/commpage/common/offsets.in 25*263f549eSPatrick MooneyCOMMPAGE_OFFSETS_H = cp_offsets.h 26*263f549eSPatrick Mooney 27*263f549eSPatrick MooneyCLEANFILES += $(COMMPAGE_OFFSETS_H) 28*263f549eSPatrick Mooney 29*263f549eSPatrick Mooneypics/cp_main.o := CPPFLAGS += -I$(SRC)/uts/i86pc 30*263f549eSPatrick Mooneypics/cp_subr.o := ASFLAGS += -I$(SRC)/uts/i86pc -I./ 31*263f549eSPatrick Mooney$(COMMPAGE_OFFSETS_H) := CPPFLAGS += -I$(SRC)/uts/i86pc 32*263f549eSPatrick Mooney 33*263f549eSPatrick MooneyCOMMPAGE_CPPFLAGS = -I$(SRC)/lib/commpage/common 34