Makefile revision 7b1019a6d29ccb7999dc76cba3dde1c627e8e609
2N/A#
2N/A# This file and its contents are supplied under the terms of the
2N/A# Common Development and Distribution License ("CDDL"), version 1.0.
2N/A# You may only use this file in accordance with the terms of version
2N/A# 1.0 of the CDDL.
2N/A#
2N/A# A full copy of the text of the CDDL should have accompanied this
2N/A# source. A copy of the CDDL is also available via the Internet at
2N/A# http://www.illumos.org/license/CDDL.
2N/A#
2N/A# Copyright 2016 Joyent, Inc.
2N/A#
2N/A
2N/APROG= acpidump
2N/A
2N/Ainclude ../../Makefile.cmd
2N/Ainclude ../../Makefile.ctf
2N/A
2N/AOBJS= apmain.o apdump.o apfiles.o tbprint.o tbxfroot.o osillumostbl.o \
2N/A utbuffer.o osunixdir.o
2N/ASRCS = $(OBJS:.o=.c)
2N/A
2N/ACERRWARN += -_gcc=-Wno-unused-function
2N/A
2N/ACPPFLAGS += -I$(SRC)/uts/intel/sys/acpi -DACPI_DUMP_APP
2N/A
2N/A.KEEP_STATE:
2N/A
2N/Aall: $(PROG)
2N/A
2N/A$(PROG): $(OBJS)
2N/A $(LINK.c) -o $@ $(OBJS) ../common/acpi.a
2N/A $(POST_PROCESS)
2N/A
2N/Ainstall: all $(ROOTUSRSBINPROG)
2N/A
2N/Aclean:
2N/A $(RM) $(OBJS)
2N/A
2N/Alint: lint_SRCS
2N/A
2N/Ainclude ../../Makefile.targ
2N/A