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


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

1.1
date	99.02.03.21.26.59;	author billf;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	99.02.03.21.26.59;	author billf;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Respect CC and CFLAGS
@
text
@--- Makefile.orig	Fri Apr 30 03:02:34 1999
+++ Makefile	Sun Feb  6 22:25:51 2000
@@@@ -2,15 +2,18 @@@@
 INSTDIR=/usr/local/bin
 MAN=/usr/local/man
 
+CC ?= gcc
+CFLAGS ?= -O2
+
 webcrawl: $(OBJ)
-	gcc -o webcrawl $(OBJ)
+	$(CC) -o webcrawl $(OBJ)
 clean:
 	rm -f *.o *~ webcrawl
 install: webcrawl
 	install webcrawl $(INSTDIR)
 	install webcrawl.1 $(MAN)/man1
 .c.o:
-	gcc -Wall -c $*.c
+	$(CC) ${CFLAGS} -Wall -c $*.c
 
 webcrawl.o: webcrawl.c web.h
 http.o: http.c web.h
@


1.1
log
@Initial revision
@
text
@d1 5
a5 4
--- Makefile.old	Wed Feb  3 15:57:13 1999
+++ Makefile	Wed Feb  3 15:56:34 1999
@@@@ -4,7 +4,7 @@@@
 	gcc -o webcrawl $(OBJ)
d7 11
d20 1
a20 1
+	gcc ${CFLAGS} -Wall -c $*.c
@


1.1.1.1
log
@WebCrawl is a program designed to download an entire web-site without
user interaction (although an interactive mode is available). It works simply
by starting with a single web page, and following all links from that page
to attempt to recreate the directory structure on the remote server.

PR:		ports/9846
Submitted By:	Dima Sivachenko <dima@@Chg.RU>
@
text
@@
