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.
22 lines
734 B
22 lines
734 B
15 years ago
|
INCLUDES = \
|
||
|
-I$(srcdir)/include \
|
||
|
-I$(srcdir)/include/generated \
|
||
|
$(all_includes)
|
||
|
|
||
|
### KDE 4.0: either make noinst or rename to something like libkvcard
|
||
|
lib_LTLIBRARIES = libvcard.la
|
||
|
|
||
|
libvcard_la_SOURCES = vCard-all.cpp
|
||
|
libvcard_la_LDFLAGS = $(all_libraries)
|
||
13 years ago
|
libvcard_la_LIBADD = $(LIB_TDECORE) $(LIB_QT)
|
||
15 years ago
|
|
||
|
check_PROGRAMS = testwrite testread
|
||
|
|
||
12 years ago
|
testwrite_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor
|
||
15 years ago
|
testwrite_LDADD = libvcard.la
|
||
|
testwrite_SOURCES = testwrite.cpp
|
||
|
|
||
12 years ago
|
testread_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor
|
||
15 years ago
|
testread_LDADD = libvcard.la
|
||
|
testread_SOURCES = testread.cpp
|