head	1.4;
access;
symbols
	RELEASE_8_3_0:1.4
	RELEASE_9_0_0:1.4
	RELEASE_7_4_0:1.4
	RELEASE_8_2_0:1.4
	RELEASE_6_EOL:1.4
	RELEASE_8_1_0:1.4
	RELEASE_7_3_0:1.4
	RELEASE_8_0_0:1.4
	RELEASE_7_2_0:1.4
	RELEASE_7_1_0:1.4
	RELEASE_6_4_0:1.4
	RELEASE_5_EOL:1.4
	RELEASE_7_0_0:1.4
	RELEASE_6_3_0:1.4
	PRE_XORG_7:1.4
	RELEASE_4_EOL:1.4
	RELEASE_6_2_0:1.4
	RELEASE_6_1_0:1.4
	RELEASE_5_5_0:1.4
	RELEASE_6_0_0:1.4
	RELEASE_5_4_0:1.4
	RELEASE_4_11_0:1.4
	RELEASE_5_3_0:1.4
	RELEASE_4_10_0:1.4
	RELEASE_5_2_1:1.4
	RELEASE_5_2_0:1.4
	RELEASE_4_9_0:1.4
	RELEASE_5_1_0:1.4
	RELEASE_4_8_0:1.4
	RELEASE_5_0_0:1.4
	RELEASE_4_7_0:1.4
	RELEASE_4_6_2:1.4
	RELEASE_4_6_1:1.4
	RELEASE_4_6_0:1.4
	RELEASE_5_0_DP1:1.4
	RELEASE_4_5_0:1.4
	RELEASE_4_4_0:1.4
	RELEASE_4_3_0:1.4
	RELEASE_4_2_0:1.4
	RELEASE_4_1_1:1.4
	RELEASE_4_1_0:1.4
	RELEASE_3_5_0:1.4
	RELEASE_4_0_0:1.3
	RELEASE_3_4_0:1.3
	RELEASE_3_3_0:1.2
	RELEASE_3_2_0:1.2
	RELEASE_3_1_0:1.1.1.1
	v1_0:1.1.1.1
	DOM:1.1.1;
locks; strict;
comment	@# @;


1.4
date	2000.04.25.08.04.54;	author kris;	state Exp;
branches;
next	1.3;

1.3
date	99.12.06.05.15.58;	author kris;	state Exp;
branches;
next	1.2;

1.2
date	99.04.16.10.33.19;	author kris;	state Exp;
branches;
next	1.1;

1.1
date	99.01.18.04.21.04;	author steve;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	99.01.18.04.21.04;	author steve;	state Exp;
branches;
next	;


desc
@@


1.4
log
@On FreeBSD 5.0, use the new kqueue() notification system to monitor
for directory changes. This cuts CPU usage from 100% down to about 0.1%
as well as improving the reliability of change monitoring.
@
text
@--- Makefile.orig	Thu Sep 23 10:18:18 1999
+++ Makefile	Tue Apr 25 00:30:11 2000
@@@@ -9,12 +9,13 @@@@
 # debugging
 # DFLAGS = -DTEST -DDEBUG
 DFLAGS = -DREGEX
-CFLAGS =-O -Wall
+CFLAGS ?=-O -Wall
 XFLAGS =        # xtra cflags, set by systype targets
 XLIBS =         # xtra libs if necessary?
 # -Bstatic for sunos,  -static for gcc, etc.  You want this, trust me.
 STATIC =
-CC = cc $(CFLAGS)
+CC ?= cc
+CC += $(CFLAGS)
 LD = $(CC) -s   # linker; defaults to stripped executables
 o = o           # object extension
 CKTEMP_OBJS=check_tmp.o daemon.o list_utils.o usage.o
@@@@ -60,7 +61,8 @@@@
 
 OpenBSD:
 	make -e $(ALL) $(MFLAGS) \
-	XFLAGS='-DBSD -DREGEX -DREGCOMP_3C' CC="gcc $(CFLAGS)" STATIC=-static
+	XFLAGS='-DREGEX -DREGCOMP_3C' CC="$(CC) $(CFLAGS)" \
+	STATIC=-static
 
 generic:
 	make -e $(ALL) $(MFLAGS) \
@


1.3
log
@Upgrade to l0pht-watch 1.1

Reviewed by:	Maintainer
@
text
@d2 1
a2 1
+++ Makefile	Sat Dec  4 00:53:05 1999
d24 1
a24 1
+	XFLAGS='-DBSD -DREGEX -DREGCOMP_3C' CC="$(CC) $(CFLAGS)" \
@


1.2
log
@Respect CC and CFLAGS.
@
text
@d1 3
a3 4
--- Makefile.orig	Tue Dec 29 03:57:35 1998
+++ Makefile	Sun Apr 11 20:32:06 1999
@@@@ -8,12 +8,13 @@@@
 # pick gcc if you'd rather , and/or do -g instead of -O if debugging
d6 1
d8 1
a8 2
+CFLAGS ?= -O
+CFLAGS += -Wall
d15 1
d19 1
a19 1
@@@@ -59,7 +60,8 @@@@
@


1.1
log
@Initial revision
@
text
@d1 3
a3 3
--- Makefile.orig	Mon Jan 11 09:15:47 1999
+++ Makefile	Mon Jan 11 09:16:07 1999
@@@@ -8,7 +8,6 @@@@
d8 2
d13 16
@


1.1.1.1
log
@Initial import of l0pht-watch version 1.0.
A program to report what goes on in /tmp.

PR:		9434
Submitted by:	Dom Mitchell <Dom.Mitchell@@palmerharvey.co.uk>
@
text
@@
