blob: 5ca5cbd8613d8e8d1885048e04704c0ce5369ff1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
include $(top_srcdir)/kexi/Makefile.global
noinst_LTLIBRARIES = libkexiformutilswidgets.la
libkexiformutilswidgets_la_SOURCES = \
kexidbutils.cpp \
kexidbautofield.cpp \
kexidbform.cpp \
kexidbsubform.cpp \
kexidblabel.cpp \
kexidbimagebox.cpp \
kexipushbutton.cpp \
kexiframe.cpp \
kexidblineedit.cpp \
kexidbcheckbox.cpp \
kexidbtextedit.cpp \
kexidbcombobox.cpp
libkexiformutilswidgets_la_LDFLAGS = $(all_libraries) -Wnounresolved
libkexiformutilswidgets_la_LIBADD =
libkexiformutilswidgets_la_METASOURCES = AUTO
SUBDIRS = .
# set the include path for X, qt and KDE
INCLUDES= -I$(top_srcdir)/kexi -I$(top_srcdir)/kexi/plugins/forms -I$(top_srcdir)/kexi/core $(all_includes)
|