1 # $Id: Makefile,v 1.4 2002/04/09 16:38:10 oes Exp $
3 # Written by and Copyright (C) 2001 the SourceForge
4 # Privoxy team. http://www.privoxy.org/
6 # Based on the Internet Junkbuster originally written
7 # by and Copyright (C) 1997 Anonymous Coders and
8 # Junkbusters Corporation. http://www.junkbusters.com
10 # This program is free software; you can redistribute it
11 # and/or modify it under the terms of the GNU General
12 # Public License as published by the Free Software
13 # Foundation; either version 2 of the License, or (at
14 # your option) any later version.
16 # This program is distributed in the hope that it will
17 # be useful, but WITHOUT ANY WARRANTY; without even the
18 # implied warranty of MERCHANTABILITY or FITNESS FOR A
19 # PARTICULAR PURPOSE. See the GNU General Public
20 # License for more details.
22 # The GNU General Public License should be included with
23 # this file. If not, you can view it at
24 # http://www.gnu.org/copyleft/gpl.html
25 # or write to the Free Software Foundation, Inc., 59
26 # Temple Place - Suite 330, Boston, MA 02111-1307, USA.
29 # Revision 1.4 2002/04/09 16:38:10 oes
30 # Added option to run the whole build process
32 # Revision 1.3 2002/03/26 22:29:54 swa
33 # we have a new homepage!
35 # Revision 1.2 2002/03/24 13:25:42 swa
36 # name change related issues
38 # Revision 1.1 2001/12/01 11:24:29 jongfoster
39 # Will display a warning if non-GNU make is used
43 #############################################################################
46 @if [ -f GNUmakefile ]; then \
48 echo "*** You are not using the GNU version of Make - maybe it's called gmake"; \
49 echo "*** or it's in a different directory?"; \
54 echo "*** To build this program, you must run"; \
55 echo "*** autoheader && autoconf && ./configure and then run GNU make."; \
57 echo -n "*** Shall I do this for you now? (y/n) "; \
59 if [ $$answer = "y" ]; then \
60 autoheader && autoconf && ./configure && make;\
66 #############################################################################