diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2020-12-03 11:40:03 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2020-12-03 11:40:13 +0100 |
commit | 5307fc84a25f745fac945e579c8b01288fd8279d (patch) | |
tree | fd2263b2583f5ceae642fc60e1b348ac9338001d /src | |
parent | bd87193c1ee736a5ffa217a710996e4afd3f3b47 (diff) | |
download | ayatana-ido-5307fc84a25f745fac945e579c8b01288fd8279d.tar.gz ayatana-ido-5307fc84a25f745fac945e579c8b01288fd8279d.tar.bz2 ayatana-ido-5307fc84a25f745fac945e579c8b01288fd8279d.zip |
src/Makefile.am: Merge old 'INCLUDES =' and 'AM_CPPFLAGS =' values (and beautify the TAB'bing).
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 12a11c3..cc583c5 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -52,24 +52,24 @@ idotypebuiltins.c: stamp-idotypebuiltins.h $(sources_h) ) > xgen-gtbc \ && cp xgen-gtbc idotypebuiltins.c && rm -f xgen-gtbc -INCLUDES = \ - -I$(srcdir) \ - -I$(top_srcdir) \ - -DG_LOG_DOMAIN=\"IDO\" \ - -DPREFIX=\"$(prefix)"\" \ - -DLIBDIR=\"$(libdir)"\" \ - -DG_DISABLE_DEPRECATED \ - -DGDK_PIXBUF_DISABLE_DEPRECATED \ - -DGDK_DISABLE_DEPRECATED - -AM_CPPFLAGS = \ - $(GCC_FLAGS) \ - $(GTK_CFLAGS) \ - $(MAINTAINER_CFLAGS) \ - -Wall -Wextra -Wno-unused-parameter -Wno-error=deprecated-declarations - -AM_CFLAGS = \ - $(COVERAGE_CFLAGS) +AM_CPPFLAGS = \ + -I$(srcdir) \ + -I$(top_srcdir) \ + -DG_LOG_DOMAIN=\"IDO\" \ + -DPREFIX=\"$(prefix)"\" \ + -DLIBDIR=\"$(libdir)"\" \ + -DG_DISABLE_DEPRECATED \ + -DGDK_PIXBUF_DISABLE_DEPRECATED \ + -DGDK_DISABLE_DEPRECATED \ + $(GCC_FLAGS) \ + $(GTK_CFLAGS) \ + $(MAINTAINER_CFLAGS) \ + -Wall -Wextra -Wno-unused-parameter -Wno-error=deprecated-declarations \ + $(NULL) + +AM_CFLAGS = \ + $(COVERAGE_CFLAGS) \ + $(NULL) libayatana_ido_0_4_la_SOURCES = \ ayatanamenuitemfactory.c \ |