Makefile revision cda73f64f20b8a0afc4909f5ea1f055ec7913856
0N/A#
3137N/A# This file and its contents are supplied under the terms of the
0N/A# Common Development and Distribution License ("CDDL"), version 1.0.
0N/A# You may only use this file in accordance with the terms of version
0N/A# 1.0 of the CDDL.
0N/A#
0N/A# A full copy of the text of the CDDL should have accompanied this
0N/A# source. A copy of the CDDL is also available via the Internet at
0N/A# http://www.illumos.org/license/CDDL.
0N/A#
0N/A
0N/A#
0N/A# Copyright 2016 Toomas Soome <tsoome@me.com>
0N/A#
0N/A
0N/A# cmd/cmd-inet/usr.bin/dns-sd/Makefile
0N/A
0N/APROG= dns-sd
1472N/A
1472N/Ainclude ../../../Makefile.cmd
1472N/Ainclude ../../Makefile.cmd-inet
0N/A
0N/AOBJS= ClientCommon.o dns-sd.o
0N/ASRCS= ClientCommon.c dns-sd.c
1879N/A
1879N/ACFLAGS += $(C99_ENABLE)
1879N/ACPPFLAGS += -DMDNS_VERSIONSTR_NODTS
1879N/ALDLIBS += -lsocket -ldns_sd
1879N/A
1879N/A.KEEP_STATE:
1879N/A
1879N/Aall: $(PROG)
1879N/A
1879N/AROOTPROG= $(PROG:%=$(ROOTBIN)/%)
1879N/A
1879N/A$(PROG): $(OBJS)
1879N/A $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
1879N/A $(POST_PROCESS)
1879N/A
1879N/Ainstall: all $(ROOTPROG)
1879N/A
2796N/Aclean:
2796N/A $(RM) $(OBJS)
2796N/A
1879N/Alint: lint_SRCS
0N/A
0N/Ainclude ../../../Makefile.targ
0N/A