xref: /illumos-gate/usr/src/cmd/dlutil/Makefile (revision 80b758da23abee3ef0e550f533aada9ce3b1b01f)
1#
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.
6#
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.
10#
11
12#
13# Copyright (c) 2017, Joyent, Inc.
14# Copyright 2024 Oxide Computer Company
15#
16
17PROG= dltraninfo dlsend dlrecv dlled
18DLTRANINFO_OBJS = dltraninfo.o $(HEXDUMP_OBJS)
19
20include ../Makefile.cmd
21include $(SRC)/common/hexdump/Makefile.com
22
23ROOTCMDDIR = $(ROOTLIB)/dl
24CFLAGS += $(CCVERBOSE)
25
26dltraninfo :=   LDLIBS += -ldladm -lsff -lnvpair
27dlled :=	LDLIBS += -ldladm
28dlsend :=	LDLIBS += -ldlpi -lsocket
29dlrecv :=	LDLIBS += -ldlpi
30
31ROOTLIBDLFILES = $(PROG:%=$(ROOTLIB)/dl/%)
32
33.KEEP_STATE:
34
35all: $(PROG)
36
37install: all $(ROOTCMD)
38
39clean:
40	$(RM) $(DLTRANINFO_OBJS)
41
42dltraninfo: $(DLTRANINFO_OBJS)
43	$(LINK.c) -o $@ $(DLTRANINFO_OBJS) $(LDLIBS)
44	$(POST_PROCESS)
45
46include $(SRC)/common/hexdump/Makefile.targ
47include ../Makefile.targ
48