Files
wlan-cloud-lib-poco/Shell/Client/Makefile
Aleksandar Fabijanic d712530c7d added Poco::Shell
2013-04-23 20:06:03 -05:00

29 lines
593 B
Makefile

#
# Makefile
#
# $Id: //poco/1.4/Shell/Client/Makefile#2 $
#
# Makefile for POCO Shell Client
#
include $(POCO_BASE)/build/rules/global
# check for editline (libedit) and use it if it's available
ifeq ($(shell test -f /usr/include/histedit.h && echo 1),1)
POCOSH_HAVE_EDITLINE = 1
$(info ** Building pocosh with editline (libedit) support)
endif
ifdef POCOSH_HAVE_EDITLINE
CXXFLAGS += -DPOCOSH_HAVE_EDITLINE
SYSLIBS += -ledit
endif
objects = Client
target = pocosh
target_version = 1
target_libs = PocoUtil PocoXML PocoNet PocoFoundation
include $(POCO_BASE)/build/rules/exec