# $Header: /CVSROOT/tinolib/old/Makefile.tino.dist,v 1.14 2006/07/29 23:36:21 tino Exp $ # # Read instructions in Makefile.proto how to use this. # # Prototype for your source directory Makefile.tino # Not copyrighted as this is just a stub. # # Copyright (C)2004-2005 Valentin Hilbig, webmaster@scylla-charybdis.com # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # # $Log: Makefile.tino.dist,v $ # Revision 1.14 2006/07/29 23:36:21 tino # Allow VERSIONFILE to be different from $(PROG1) # # Revision 1.13 2006/06/11 19:47:25 tino # See ChangeLog # # Revision 1.12 2005/12/05 02:11:12 tino # Copyright and COPYLEFT added # # Revision 1.11 2005/08/14 02:44:52 tino # fixes for 'make diet' (now 'make static') # # Revision 1.10 2005/08/02 04:03:01 tino # C++ needed -lstdc++ # # Revision 1.9 2005/08/02 03:20:26 tino # CXX prototype for diet usage # # Revision 1.8 2005/07/17 01:32:39 tino # diet changes # # Revision 1.7 2005/05/29 14:05:18 tino # SUBDIRS and overwrites (make variables STD_* and INSTALLPATH) implemented. # Some cleaner (install target) rulesets and predictable counter output (#c#). # # Revision 1.6 2005/01/26 10:46:41 tino # CFLAGS corrected to use -I- to keep local include path from interfering with system header . # # Revision 1.5 2004/10/05 02:09:07 tino # A lot of design improvements around the make -f Makefile.tino # # Revision 1.4 2004/09/29 00:00:47 tino # make install and make dist, see Changelog # # Revision 1.3 2004/09/04 14:25:20 tino # typos corrected # # Revision 1.2 2004/09/04 14:12:15 tino # Automated dependencies added and other make improvements. # # Revision 1.1 2004/08/24 23:50:11 tino # Quickstart (.dist) files added PROGS=!NAME! OBJS= #VERSIONFILE= #VERSIONNAME= # Additional (fixed) installs for # bin sbin lib etc man share/man inf share/inf respectively INSTALLBIN= INSTALLSBIN= INSTALLLIB= INSTALLETC= INSTALLMAN= INSTALLSMAN= INSTALLINF= INSTALLSINF= # SUBDIRS=diet # CC=diet/tinodiet.sh --tinodiet # CXX=diet/tinodiet.sh ++ --tinodiet # LIBS=diet/libcurl.a diet/libssl.a diet/libcrypto.a diet/libz.a # If you use -I. or -Itino, be sure to use -I-, too. ADD_CFLAGS= ADD_LDFLAGS= ADD_LDLIBS= CLEAN= CLEANDIRS= DISTCLEAN= TINOCOPY= # TINOINC=tino_common.h # TINOLIB=tino/lib.h #INSTALLPATH=/usr/local # DBG_CFLAGS= #DBG_LDFLAGS= # DBG_LDLIBS=-lefence # STD_CFLAGS=-g -Wall -O3 #STD_LDFLAGS= # STD_LDLIBS=-lstdc++ Makefile:: $(MAKE) -C tino tino HERE="$(PWD)"