blob: ac6f5be2fe992c0d3d7ff1b481f440f10c0c3c39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Here resides the Fortran support part.
INCLUDES = -I$(top_srcdir)/lib/interfaces \
-I$(top_srcdir)/lib/interfaces/extensions -I$(top_srcdir)/lib/interfaces/external -I$(top_srcdir)/lib/util \
$(all_includes)
SUBDIRS = file_templates app_templates compiler doc
kde_module_LTLIBRARIES = libkdevfortransupport.la
libkdevfortransupport_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN)
libkdevfortransupport_la_LIBADD = $(top_builddir)/lib/libkdevelop.la
libkdevfortransupport_la_SOURCES = fortransupportpart.cpp fixedformparser.cpp ftnchekconfigwidget.cpp ftnchekconfigwidgetbase.ui
METASOURCES = AUTO
servicedir = $(kde_servicesdir)
service_DATA = kdevfortransupport.desktop
rcdir = $(kde_datadir)/kdevfortransupport
rc_DATA = kdevfortransupport.rc
|