diff options
author | rbuj <[email protected]> | 2019-09-25 16:35:09 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-09-30 21:19:42 +0200 |
commit | 04657b8f6ef57fe5f6b620dbfe6db8b9a097ad9b (patch) | |
tree | 7504f2c94a6998634739e8d059176353186cfc12 /copy-n-paste | |
parent | f25804efa335294b633759e19ae8d4964bd9614e (diff) | |
download | engrampa-04657b8f6ef57fe5f6b620dbfe6db8b9a097ad9b.tar.bz2 engrampa-04657b8f6ef57fe5f6b620dbfe6db8b9a097ad9b.tar.xz |
Use mate-compiler-flags.m4 provided by mate-common
USAGE: ./autogen.sh --enable-compile-warnings=no/minimum/yes/maximum/error@
If --enable-compile-warnings is not provided, the default is
--enable-compile-warnings=yes
Diffstat (limited to 'copy-n-paste')
-rw-r--r-- | copy-n-paste/Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/copy-n-paste/Makefile.am b/copy-n-paste/Makefile.am index 776885a..33f7469 100644 --- a/copy-n-paste/Makefile.am +++ b/copy-n-paste/Makefile.am @@ -1,10 +1,15 @@ +NULL = + AM_CPPFLAGS = \ -UGETTEXT_PACKAGE noinst_LTLIBRARIES = libeggsmclient.la libeggsmclient_la_LIBADD = $(GTK_LIBS) -libeggsmclient_la_CFLAGS = $(GTK_CFLAGS) +libeggsmclient_la_CFLAGS = \ + $(GTK_CFLAGS) \ + $(WARN_CFLAGS) \ + $(NULL) libeggsmclient_la_SOURCES = eggdesktopfile.h \ eggdesktopfile.c \ eggsmclient.h \ |