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