2000-05-29 02:27:45 +00:00
|
|
|
*** Makefile Mon Jul 25 10:59:41 1994
|
1997-04-01 04:44:00 +00:00
|
|
|
--- Makefile Thu Jan 2 12:04:35 1997
|
|
|
|
***************
|
2000-05-29 02:27:45 +00:00
|
|
|
*** 34,36 ****
|
|
|
|
# you can use ANSI C if you like, but K&R is equally fine.
|
|
|
|
! CC = cc # common
|
|
|
|
#CC = gcc # also common
|
|
|
|
--- 34,36 ----
|
|
|
|
# you can use ANSI C if you like, but K&R is equally fine.
|
|
|
|
! #CC = cc # common
|
|
|
|
#CC = gcc # also common
|
|
|
|
***************
|
|
|
|
*** 38,40 ****
|
1997-04-01 04:44:00 +00:00
|
|
|
|
2000-05-29 02:27:45 +00:00
|
|
|
! CFLAGS = -O # common
|
|
|
|
#CFLAGS = -g # common
|
|
|
|
--- 38,40 ----
|
1997-04-01 04:44:00 +00:00
|
|
|
|
2000-05-29 02:27:45 +00:00
|
|
|
! #CFLAGS = -O # common
|
|
|
|
#CFLAGS = -g # common
|
1997-04-01 04:44:00 +00:00
|
|
|
***************
|
|
|
|
*** 60,66 ****
|
|
|
|
#CPP = /lib/cpp # on older systems
|
|
|
|
|
|
|
|
# make sure libraries are not linked dynamically (as a security measure)
|
|
|
|
! LDFLAGS= # common
|
|
|
|
#LDFLAGS= -non_shared # OSF/1
|
|
|
|
#LDFLAGS= -Bstatic # SunOS 4 (cannot statically link tripwire
|
|
|
|
# on Solaris 2.3)
|
|
|
|
--- 60,67 ----
|
|
|
|
#CPP = /lib/cpp # on older systems
|
|
|
|
|
|
|
|
# make sure libraries are not linked dynamically (as a security measure)
|
|
|
|
! LDFLAGS= -static
|
|
|
|
! #LDFLAGS= # common
|
|
|
|
#LDFLAGS= -non_shared # OSF/1
|
|
|
|
#LDFLAGS= -Bstatic # SunOS 4 (cannot statically link tripwire
|
|
|
|
# on Solaris 2.3)
|
2000-05-29 02:27:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
--- src/Makefile.orig Mon Jul 25 10:40:54 1994
|
|
|
|
+++ src/Makefile Sun May 28 15:52:25 2000
|
|
|
|
@@ -3,7 +3,7 @@
|
|
|
|
# Tripwire build
|
|
|
|
#
|
|
|
|
|
|
|
|
-CFLAGS = -O
|
|
|
|
+#CFLAGS = -O
|
|
|
|
|
|
|
|
OFILES = config.parse.o main.o list.o ignorevec.o dbase.build.o \
|
|
|
|
utils.o preen.o preen.interp.o preen.report.o \
|
|
|
|
@@ -103,8 +103,9 @@
|
|
|
|
.c.o:
|
|
|
|
$(CC) $(CFLAGS) -c $<
|
|
|
|
|
|
|
|
-install: tripwire
|
|
|
|
+install: tripwire siggen
|
|
|
|
$(INSTALL) tripwire $(DESTDIR)
|
|
|
|
+ $(INSTALL) siggen $(DESTDIR)
|
|
|
|
|
|
|
|
clean:
|
|
|
|
-rm -f $(OFILES) config.lex.c config.pre.c y.tab.c lex.yy.c help.c \
|