You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.4 KiB
60 lines
1.4 KiB
15 years ago
|
## Makefile.am for libqt-addon
|
||
|
|
||
|
# this is the program that gets installed. it's name is used for all
|
||
|
# of the other Makefile.am variables
|
||
|
noinst_LTLIBRARIES = libkdecorenetwork.la
|
||
|
|
||
|
# set the include path for X, qt and KDE
|
||
|
INCLUDES = $(all_includes)
|
||
|
|
||
|
# the library search path.
|
||
|
# convenience lib - no LDFLAGS or LIBADD !
|
||
|
# Note:
|
||
|
# ksocketdevice.cpp must appear before any inclusion of ksocketdevice.h
|
||
|
libkdecorenetwork_la_SOURCES = kresolver.cpp \
|
||
|
kresolvermanager.cpp \
|
||
|
kresolverworkerbase.cpp \
|
||
|
ksocketaddress.cpp \
|
||
|
kresolverstandardworkers.cpp \
|
||
|
kreverseresolver.cpp \
|
||
|
ksocketdevice.cpp \
|
||
|
ksocketbase.cpp \
|
||
|
kclientsocketbase.cpp \
|
||
|
kstreamsocket.cpp \
|
||
|
kserversocket.cpp \
|
||
|
kdatagramsocket.cpp \
|
||
|
khttpproxysocketdevice.cpp \
|
||
|
ksockssocketdevice.cpp \
|
||
|
kbufferedsocket.cpp \
|
||
|
ksocketbuffer.cpp \
|
||
|
ksrvresolverworker.cpp
|
||
|
|
||
|
include_HEADERS = kresolver.h \
|
||
|
kreverseresolver.h \
|
||
|
ksocketaddress.h \
|
||
|
ksocketbase.h \
|
||
|
ksocketdevice.h \
|
||
|
kclientsocketbase.h \
|
||
|
kstreamsocket.h \
|
||
|
kserversocket.h \
|
||
|
kdatagramsocket.h \
|
||
|
kmulticastsocketdevice.h \
|
||
|
kmulticastsocket.h \
|
||
|
knetworkinterface.h \
|
||
|
khttpproxysocketdevice.h \
|
||
|
ksockssocketdevice.h \
|
||
|
kbufferedsocket.h \
|
||
|
kiobuffer.h
|
||
|
noinst_HEADERS = kresolver_p.h \
|
||
|
kresolverworkerbase.h \
|
||
|
kresolverstandardworkers_p.h \
|
||
|
ksocketbuffer_p.h \
|
||
|
ksrvresolverworker_p.h \
|
||
|
syssocket.h
|
||
|
|
||
|
configdir = $(kde_confdir)
|
||
|
config_DATA = ipv6blacklist
|
||
|
|
||
|
# let automoc handle all of the meta source files (moc)
|
||
|
METASOURCES = AUTO
|