summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Makefile.am11
-rw-r--r--util/Makefile.am1
2 files changed, 9 insertions, 3 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 55e477b..e0ac275 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -19,7 +19,6 @@ BUILT_SOURCES += $(st_file)
librdaincludedir = $(includedir)/rda
librdainclude_HEADERS = \
- rda_supported_technologies.h \
rda_ogon.h \
rda_protocol.h \
rda_util.h \
@@ -27,6 +26,10 @@ librdainclude_HEADERS = \
rda.h \
$(NULL)
+nodist_librdainclude_HEADERS = \
+ $(st_file) \
+ $(NULL)
+
librda_la_SOURCES = \
rda.c \
rda_x2go.c \
@@ -53,8 +56,10 @@ INTROSPECTION_SCANNER_ARGS = --add-include-path=$(srcdir) --warn-all
INTROSPECTION_COMPILER_ARGS = --includedir=$(srcdir)
if HAVE_INTROSPECTION
-introspection_sources = $(librdainclude_HEADERS) \
- $(librda_la_SOURCES) \
+introspection_sources = \
+ $(librdainclude_HEADERS) \
+ $(nodist_librdainclude_HEADERS) \
+ $(librda_la_SOURCES) \
$(NULL)
rda-1.0.gir: librda.la
diff --git a/util/Makefile.am b/util/Makefile.am
index 8d1d792..6414939 100644
--- a/util/Makefile.am
+++ b/util/Makefile.am
@@ -13,6 +13,7 @@ rdacheck_CFLAGS = \
-Wall -Werror \
$(LIBRDA_CFLAGS) \
-I$(top_srcdir)/src/ \
+ -I../src \
-DBUILD_DIR="\"$(builddir)\"" \
$(NULL)