web/hosts/src/sxr Makefile.in,1.5,1.6
Tobias Hunger <[email protected]> Sun, 06 Jun 2004 10:05:15 +0200
| Newsgroups | gmane.comp.video.fresco.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvs/fresco/web/hosts/src/sxr
In directory frida:/tmp/cvs-serv6650/hosts/src/sxr
Modified Files:
Makefile.in
Log Message:
Mkdir directories before copying files into them.
Index: Makefile.in
===================================================================
RCS file: /cvs/fresco/web/hosts/src/sxr/Makefile.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- Makefile.in 21 Nov 2002 17:26:11 -0000 1.5
+++ Makefile.in 6 Jun 2004 08:04:04 -0000 1.6
@@ -10,8 +10,11 @@
all: $(pages) $(templates)
install: $(pages) $(templates)
+ mkdir -p $(sitedir)/root/sxr/
cp $(pages) $(sitedir)/root/sxr/
+ mkdir -p $(sitedir)/templates
cp $(templates) $(sitedir)/templates/
+ mkdir -p $(sitedir)/cgi-bin
cp $(srcdir)/sxr.cgi $(sitedir)/cgi-bin/
%.html: %.xml $(data) menu.xml $(xsl)
@@ -21,4 +24,4 @@
-o $@ $(topdir)/xsl/fresco.xsl $<
clean:
- rm -f *.html
\ No newline at end of file
+ rm -f *.html