diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2020-12-03 11:42:50 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2020-12-03 11:42:50 +0100 |
commit | 385c79769f896bdc8cfe15f30113feef7776ee69 (patch) | |
tree | 387544f13f5fe8adcfb7a4784d2c202a89ca420f /src | |
parent | d5fb21d8596ab963c76dd52357e9e6c16984024a (diff) | |
download | ayatana-ido-385c79769f896bdc8cfe15f30113feef7776ee69.tar.gz ayatana-ido-385c79769f896bdc8cfe15f30113feef7776ee69.tar.bz2 ayatana-ido-385c79769f896bdc8cfe15f30113feef7776ee69.zip |
src/Makefile.am: Split out all *.c files from libayatana_ido_0_4_la_SOURCES into sources_c variable.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 4cdf8d4..4922125 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -77,6 +77,11 @@ AM_CFLAGS = \ $(NULL) libayatana_ido_0_4_la_SOURCES = \ + $(sources_h) \ + $(sources_c) \ + $(NULL) + +sources_c = \ ayatanamenuitemfactory.c \ libayatana-ido.c \ idotypebuiltins.c \ @@ -157,7 +162,9 @@ AyatanaIdo3_0_4_gir_FILES = \ idoscalemenuitem.h \ idoswitchmenuitem.h \ idotimeline.h \ - $(libayatana_ido_0_4_la_SOURCES) + $(sources_c) \ + $(NULL) + AyatanaIdo3_0_4_gir_NAMESPACE = AyatanaIdo3 AyatanaIdo3_0_4_gir_VERSION = 0.4 AyatanaIdo3_0_4_gir_SCANNER_FLAGS = $(INTROSPECTION_SCANNER_ARGS) |