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.
21 lines
708 B
21 lines
708 B
INCLUDES = \
|
|
-I$(srcdir)/include \
|
|
$(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)
|
|
libvcard_la_LIBADD = $(LIB_TDECORE) $(LIB_TQT)
|
|
|
|
check_PROGRAMS = testwrite testread
|
|
|
|
testwrite_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_TQT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
|
|
testwrite_LDADD = libvcard.la
|
|
testwrite_SOURCES = testwrite.cpp
|
|
|
|
testread_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_TQT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
|
|
testread_LDADD = libvcard.la
|
|
testread_SOURCES = testread.cpp
|