summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@sun.com>2007-07-23 17:49:59 -0700
committerAlan Coopersmith <alan.coopersmith@sun.com>2007-07-23 17:49:59 -0700
commit4471761150676a8cee5631615bc187019b760161 (patch)
tree760b190f5dd70e9c8cfd92a3cd8c2d6db8c2e6bd
parentbc7a27ab2e4e3339b9c2ee3bb90a38662b128448 (diff)
Change iceauth_CFLAGS to AM_CFLAGS to avoid automake-1.10 warning
Makefile.am:27: compiling `iceauth.c' with per-target flags requires `AM_PROG_CC_C_O' in `configure.ac'
-rw-r--r--Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am
index d5692d0..f438250 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -21,7 +21,7 @@
bin_PROGRAMS = iceauth
-iceauth_CFLAGS = $(ICEAUTH_CFLAGS)
+AM_CFLAGS = $(ICEAUTH_CFLAGS)
iceauth_LDADD = $(ICEAUTH_LIBS)
iceauth_SOURCES = \
@@ -75,7 +75,7 @@ SUFFIXES = .$(APP_MAN_SUFFIX) .man
if LINT
ALL_LINT_FLAGS=$(LINT_FLAGS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
- $(AM_CPPFLAGS) $(CPPFLAGS) $(iceauth_CFLAGS)
+ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS)
lint:
$(LINT) $(ALL_LINT_FLAGS) $(iceauth_SOURCES)
endif LINT