From f478951ed895418b67b226bcf88bb4a278f43a32 Mon Sep 17 00:00:00 2001 From: Greg Hudson Date: Sat, 31 Jan 1998 18:54:52 +0000 Subject: Do CFLAGS the gnu standard way. This means we compile with -g by default. --- server/Makefile.in | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'server/Makefile.in') diff --git a/server/Makefile.in b/server/Makefile.in index 4feb618..be4229f 100644 --- a/server/Makefile.in +++ b/server/Makefile.in @@ -18,9 +18,10 @@ VPATH=@srcdir@ CC=@CC@ INSTALL=@INSTALL@ -DEBUG=-O -CFLAGS=${DEBUG} -DSYSCONFDIR=\"${sysconfdir}\" -I${top_srcdir}/h \ - -I${BUILDTOP}/h -I. @CPPFLAGS@ +CPPFLAGS=@CPPFLAGS@ +CFLAGS=@CFLAGS@ +ALL_CFLAGS=${CFLAGS} -DSYSCONFDIR=\"${sysconfdir}\" -I${top_srcdir}/h \ + -I${BUILDTOP}/h -I. ${CPPFLAGS} LDFLAGS=${DEBUG} -L${BUILDTOP}/lib @LDFLAGS@ LIBS=-lzephyr @LIBS@ -lcom_err @@ -41,6 +42,9 @@ version.o: version.h version.h: always sh ${srcdir}/new_vers.sh +.c.o: + ${CC} -c ${ALL_CFLAGS} $< + check: # No dependency on zephyrd, to avoid rebuilding version.o. -- cgit v1.2.3