53 lines
1.6 KiB
Makefile
53 lines
1.6 KiB
Makefile
# Network UPS Tools: clients
|
|
|
|
# by default, link programs in this directory with libcommon.a
|
|
LDADD = ../common/libcommon.la libupsclient.la $(NETLIBS)
|
|
if WITH_SSL
|
|
LDADD += $(LIBSSL_LIBS)
|
|
endif
|
|
|
|
# Avoid per-target CFLAGS, because this will prevent re-use of object
|
|
# files. In any case, CFLAGS are only -I options, so there is no harm,
|
|
# but only add them if we really use the target.
|
|
AM_CFLAGS = -I$(top_srcdir)/include
|
|
if WITH_SSL
|
|
AM_CFLAGS += $(LIBSSL_CFLAGS)
|
|
endif
|
|
if WITH_CGI
|
|
AM_CFLAGS += $(LIBGD_CFLAGS)
|
|
endif
|
|
|
|
bin_PROGRAMS = upsc upslog upsrw upscmd
|
|
dist_bin_SCRIPTS = upssched-cmd
|
|
sbin_PROGRAMS = upsmon upssched
|
|
lib_LTLIBRARIES = libupsclient.la
|
|
if WITH_DEV
|
|
include_HEADERS = upsclient.h ../include/parseconf.h
|
|
endif
|
|
if WITH_CGI
|
|
cgiexec_PROGRAMS = upsstats.cgi upsimage.cgi upsset.cgi
|
|
endif
|
|
|
|
upsc_SOURCES = upsc.c upsclient.h
|
|
upscmd_SOURCES = upscmd.c upsclient.h
|
|
upsrw_SOURCES = upsrw.c upsclient.h
|
|
upslog_SOURCES = upslog.c upsclient.h upslog.h
|
|
upsmon_SOURCES = upsmon.c upsmon.h upsclient.h
|
|
|
|
upssched_SOURCES = upssched.c upssched.h
|
|
upssched_LDADD = ../common/libcommon.la ../common/libparseconf.la $(NETLIBS)
|
|
|
|
upsimage_cgi_SOURCES = upsimage.c upsclient.h upsimagearg.h cgilib.c cgilib.h
|
|
upsimage_cgi_LDADD = $(LDADD) $(LIBGD_LDFLAGS)
|
|
|
|
upsset_cgi_SOURCES = upsset.c upsclient.h cgilib.c cgilib.h
|
|
upsstats_cgi_SOURCES = upsstats.c upsclient.h status.h upsstats.h \
|
|
upsimagearg.h cgilib.c cgilib.h
|
|
|
|
# not LDADD.
|
|
libupsclient_la_SOURCES = upsclient.c upsclient.h
|
|
libupsclient_la_LIBADD = ../common/libparseconf.la
|
|
if WITH_SSL
|
|
libupsclient_la_LIBADD += $(LIBSSL_LIBS)
|
|
endif
|
|
libupsclient_la_LDFLAGS = -version-info 2:0:1
|