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.
25 lines
805 B
25 lines
805 B
15 years ago
|
include $(top_srcdir)/kexi/Makefile.global
|
||
|
|
||
|
lib_LTLIBRARIES = libkexiutils.la
|
||
|
libkexiutils_la_SOURCES = identifier.cpp validator.cpp utils.cpp debuggui.cpp \
|
||
|
styleproxy.cpp longlongvalidator.cpp transliteration_table.cpp
|
||
|
|
||
|
libkexiutilsincludedir=$(includedir)/kexiutils
|
||
|
libkexiutilsinclude_HEADERS = tristate.h identifier.h validator.h utils.h kexiutils_export.h \
|
||
|
styleproxy.h longlongvalidator.h
|
||
|
|
||
|
noinst_HEADERS = utils_p.h
|
||
|
|
||
|
libkexiutils_la_LDFLAGS = \
|
||
|
$(KDE_RPATH) $(all_libraries) \
|
||
|
$(VER_INFO) -Wnounresolved -no-undefined
|
||
|
|
||
|
libkexiutils_la_LIBADD = $(LIB_QT) $(LIB_KDEUI) $(LIB_KIO)
|
||
|
|
||
|
INCLUDES = -I$(top_srcdir)/kexi $(all_includes)
|
||
|
|
||
|
METASOURCES = AUTO
|
||
|
|
||
|
transliteration_table.cpp: transliteration_table.cpp.bz2
|
||
|
bunzip2 -ck $(srcdir)/transliteration_table.cpp.bz2 > ./transliteration_table.cpp
|