From: <sg...@us...> - 2003-08-31 20:27:16
|
Update of /cvsroot/libfunutil/libfunutil/toc/make In directory sc8-pr-cvs1:/tmp/cvs-serv20732/toc/make Modified Files: toc.make.at Log Message: added vars: prefix, toc_tocdir, toc_makesdir. Index: toc.make.at =================================================================== RCS file: /cvsroot/libfunutil/libfunutil/toc/make/toc.make.at,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- toc.make.at 28 Aug 2003 23:10:34 -0000 1.4 +++ toc.make.at 31 Aug 2003 20:27:08 -0000 1.5 @@ -1,4 +1,4 @@ -#/bin/make +#!/bin/make # # toc.make.at: template makefile for toc.make, a core concept of the # toc build process. This is filtered at the end of the configure @@ -7,13 +7,15 @@ default: all all: FORCE: ; @true + +prefix = @prefix@ top_srcdir = @TOC_TOP_SRCDIR@ toc_tocdir = $(top_srcdir)/toc - +toc_makesdir = $(toc_tocdir)/make +toc_bindir = $(toc_tocdir)/bin TOC_SHARED_MAKEFILE = $(top_srcdir)/@TOC_SHARED_MAKEFILE@ include $(TOC_SHARED_MAKEFILE) - TOC_PWD_FROM_TOPSRC = @TOC_RELATIVE_DIR@ DISTCLEAN_FILES += $(wildcard toc.make toc.qmake) |