freebsd-ports/www/webreport/files/patch-Makefile
Clement Laforet c3ed9d9db4 Add webreport 1.5, webReport is a web log statistics program for web
hosting sites.

WebReport is a web log statistics reporting program especially designed for
virtual web hosting sites. It is also very useful for signle hosting sites.
the main difference between WebReport and other statics programs is a
configuration file which allows for easy manipulation of the features.

WWW: http://www.inter7.com/webreport2.html

PR:		ports/62904
Submitted by:	ismail@enderunix.org
2004-02-17 14:34:14 +00:00

22 lines
391 B
Text

--- Makefile.orig Mon Oct 8 18:09:18 2001
+++ Makefile Tue Feb 17 15:22:44 2004
@@ -24,8 +24,8 @@
DEBUG= -g
#OPT= -O2
-CFLAGS= -c $(OPT) $(DEBUG)
-LDFLAGS= $(DEBUG)
+CFLAGS+= -c $(OPT)
+#LDFLAGS+= $(LDFLAGS)
.c.o:
$(CC) $(CFLAGS) $<
@@ -33,6 +33,8 @@
BINS = webreport
OBJ = webreport.o
+
+all: webreport
webreport: $(OBJ) webreport.h
$(CC) $(LDFLAGS) $(OBJ) -o webreport