mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2026-05-01 00:07:19 +02:00
f2b7499f85
Still gets some warnings because compilers have changed. But should work.
24 lines
446 B
Makefile
24 lines
446 B
Makefile
#
|
|
# Makefile
|
|
#
|
|
# $Id: //poco/1.7/DNSSD/samples/DNSSDBrowser/Makefile#1 $
|
|
#
|
|
# Makefile for DNSSDBrowser sample
|
|
#
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
ifeq ($(OSNAME),Linux)
|
|
DNSSDLibrary = PocoDNSSDAvahi
|
|
else
|
|
DNSSDLibrary = PocoDNSSDBonjour
|
|
endif
|
|
|
|
objects = DNSSDBrowser
|
|
|
|
target = DNSSDBrowser
|
|
target_version = 1
|
|
target_libs = $(DNSSDLibrary) PocoDNSSD PocoNet PocoUtil PocoXML PocoFoundation
|
|
|
|
include $(POCO_BASE)/build/rules/exec
|