Merge illumos-gate
[unleashed/lotheac.git] / usr / src / cmd / acpi / acpidump / Makefile
blob325bb613e63042e59d8065dab3809869881c6665
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.
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.
11 # Copyright (c) 2018, Joyent, Inc.
12 # Copyright 2016 RackTop Systems.
15 PROG= acpidump
17 include ../../Makefile.cmd
18 include ../../Makefile.ctf
20 OBJS= apmain.o apdump.o apfiles.o getopt.o tbprint.o tbxfroot.o osillumostbl.o \
21 utascii.o utbuffer.o utdebug.o utexcep.o utmath.o utnonansi.o \
22 utxferror.o utglobal.o utprint.o osunixdir.o osl.o osunixxf.o
23 SRCS = $(OBJS:.o=.c)
25 VPATH = ../common:$(SRC)/common/acpica/utilities:$(SRC)/common/acpica/tables
27 CERRWARN += -Wno-unused-function
29 CPPFLAGS += -I$(SRCTOP)/arch/x86/include/sys/acpi -DACPI_DUMP_APP
31 LDLIBS += -ldevinfo
33 .KEEP_STATE:
35 all: $(PROG)
37 $(PROG): $(OBJS)
38 $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
39 $(POST_PROCESS)
41 install: all $(ROOTUSRSBINPROG)
43 clean:
44 $(RM) $(OBJS) $(PROG)
46 include ../../Makefile.targ