[gsharp-cvs] CVS update: gsharp/Flexichain/Doc/Makefile gsharp/Flexichain/Doc/tex-dependencies

Robert Strandh rstrandh at common-lisp.net
Fri Oct 28 21:33:12 UTC 2005


Update of /project/gsharp/cvsroot/gsharp/Flexichain/Doc
In directory common-lisp.net:/tmp/cvs-serv1360/Doc

Modified Files:
	Makefile tex-dependencies 
Log Message:
Don't assume that `.' is in the PATH.

Date: Fri Oct 28 23:33:11 2005
Author: rstrandh

Index: gsharp/Flexichain/Doc/Makefile
diff -u gsharp/Flexichain/Doc/Makefile:1.1 gsharp/Flexichain/Doc/Makefile:1.2
--- gsharp/Flexichain/Doc/Makefile:1.1	Sun Aug  1 17:27:20 2004
+++ gsharp/Flexichain/Doc/Makefile	Fri Oct 28 23:33:11 2005
@@ -1,8 +1,8 @@
 NAME=flexichain
 
-TEXFILES=$(NAME).tex $(shell tex-dependencies $(NAME).tex)
-PSTEX_T=$(shell strip-dependence inputfig $(TEXFILES))
-VERBATIM=$(shell strip-dependence verbatimtabinput $(TEXFILES))
+TEXFILES=$(NAME).tex $(shell ./tex-dependencies $(NAME).tex)
+PSTEX_T=$(shell ./strip-dependence inputfig $(TEXFILES))
+VERBATIM=$(shell ./strip-dependence verbatimtabinput $(TEXFILES))
 PSTEX=$(subst .pstex_t,.pstex,$(PSTEX_T))
 
 all : $(NAME).ps


Index: gsharp/Flexichain/Doc/tex-dependencies
diff -u gsharp/Flexichain/Doc/tex-dependencies:1.1 gsharp/Flexichain/Doc/tex-dependencies:1.2
--- gsharp/Flexichain/Doc/tex-dependencies:1.1	Sun Aug  1 17:27:20 2004
+++ gsharp/Flexichain/Doc/tex-dependencies	Fri Oct 28 23:33:11 2005
@@ -1,10 +1,10 @@
 #!/bin/sh
 
 #set -x
-TEXFILES=$(strip-dependence inputtex $1)
+TEXFILES=$(./strip-dependence inputtex $1)
 echo -n $TEXFILES
 for i in $TEXFILES
 do
-    echo -n $(tex-dependencies $i)
+    echo -n $(./tex-dependencies $i)
 done
 echo




More information about the Gsharp-cvs mailing list