From 6cf4820df6d4063580d46fb76705b2305f83e10f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Thu, 8 May 2003 10:29:45 +0000 Subject: [PATCH] inline COMPILE since (modern) automake doesn't add it by itself for some reason git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@12237 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/auth/sia/Makefile.am | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/auth/sia/Makefile.am b/lib/auth/sia/Makefile.am index 0fb5c81b0..d46164402 100644 --- a/lib/auth/sia/Makefile.am +++ b/lib/auth/sia/Makefile.am @@ -104,5 +104,9 @@ CLEANFILES = $(MOD) $(OBJS) so_locations SUFFIXES += .c .o +# XXX inline COMPILE since automake wont add it + .c.o: - $(COMPILE) -c $< + $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) \ + -c `test -f '$<' || echo '$(srcdir)/'`$<