mirror of
https://github.com/KDE/krfb
synced 2026-07-01 15:31:19 -07:00
- make sure to pass linking flags to the link line - only link against -lslp if it is available svn path=/trunk/kdenetwork/krfb/; revision=166696
15 lines
399 B
Makefile
15 lines
399 B
Makefile
METASOURCES = AUTO
|
|
|
|
# Code
|
|
noinst_LTLIBRARIES = libsrvloc.la
|
|
|
|
libsrvloc_la_SOURCES = kinetaddr.cpp kinetaddr_ipfinder.cpp \
|
|
kserviceregistry.cpp kuser.cpp
|
|
libsrvloc_la_LIBADD = $(LIB_QT) $(LIB_KDECORE) $(LIB_SLP)
|
|
libsrvloc_la_LDFLAGS = $(all_libraries) -no-undefined
|
|
noinst_HEADERS = kinetaddr.h kserviceregistry.h kuser.h
|
|
|
|
# set the include path for X, qt and KDE
|
|
INCLUDES= $(all_includes)
|
|
|