brian 97/01/06 22:46:02
Modified: support Makefile
Log:
Reviewed by: Brian Behlendorf <[EMAIL PROTECTED]>
Submitted by: Garey Smiley <[EMAIL PROTECTED]>
Since some support tools use stuff from the regex libraries.
Revision Changes Path
1.16 +5 -3 apache/support/Makefile
Index: Makefile
===================================================================
RCS file: /export/home/cvs/apache/support/Makefile,v
retrieving revision 1.15
retrieving revision 1.16
diff -C3 -r1.15 -r1.16
*** Makefile 1996/11/03 21:02:29 1.15
--- Makefile 1997/01/07 06:46:01 1.16
***************
*** 6,19 ****
#For Optimization
#CFLAGS= -O2
#For debugging
! CFLAGS= -g
# For SCO ODT
#EXTRA_LIBS= -lcrypt_i
# For OS/2 port
#EXTRA_LIBS= -llibufc -lsocket
!
! INCLUDES= -I../src
RM= /bin/rm -f
#--- You shouldn't have to edit anything else. ---
--- 6,18 ----
#For Optimization
#CFLAGS= -O2
#For debugging
! CFLAGS= -g -Wall
# For SCO ODT
#EXTRA_LIBS= -lcrypt_i
# For OS/2 port
#EXTRA_LIBS= -llibufc -lsocket
! INCLUDES= -I../src -I../src/regex
RM= /bin/rm -f
#--- You shouldn't have to edit anything else. ---
***************
*** 70,75 ****
--- 69,77 ----
logresolve: logresolve.c
$(CC) $(INCLUDES) $(CFLAGS) logresolve.c -o logresolve $(EXTRA_LIBS)
+
+ suexec: suexec.c
+ $(CC) $(INCLUDES) $(CFLAGS) suexec.c -o suexec
clean:
rm -f $(TARGETS)