adjusted names in Makefile to new structure
This commit is contained in:
parent
a8a06a1337
commit
cacca61a29
17
Makefile
17
Makefile
|
@ -4,18 +4,17 @@ version_id = 1.0
|
||||||
|
|
||||||
TEMPDIR = /tmp
|
TEMPDIR = /tmp
|
||||||
|
|
||||||
sunet_files = ChangeLog \
|
sunet_files = Readme \
|
||||||
Readme \
|
|
||||||
cgi-script.scm \
|
cgi-script.scm \
|
||||||
cgi-server.scm \
|
cgi-server.scm \
|
||||||
conditionals.scm \
|
conditionals.scm \
|
||||||
crlf-io.scm \
|
crlf-io.scm \
|
||||||
htmlout.scm \
|
htmlout.scm \
|
||||||
http-top.scm \
|
http-top.scm \
|
||||||
httpd-access-control.scm \
|
httpd/access-control.scm \
|
||||||
httpd-core.scm \
|
httpd/core.scm \
|
||||||
httpd-error.scm \
|
httpd/error.scm \
|
||||||
httpd-handlers.scm \
|
httpd/handlers.scm \
|
||||||
info-gateway.scm \
|
info-gateway.scm \
|
||||||
rman-gateway.scm \
|
rman-gateway.scm \
|
||||||
modules.scm \
|
modules.scm \
|
||||||
|
@ -32,6 +31,7 @@ sunet_files = ChangeLog \
|
||||||
uri.scm \
|
uri.scm \
|
||||||
url.scm
|
url.scm
|
||||||
|
|
||||||
|
|
||||||
sunet-$(version_id).tar.gz: $(sunet_files)
|
sunet-$(version_id).tar.gz: $(sunet_files)
|
||||||
sunet_root=`pwd`; \
|
sunet_root=`pwd`; \
|
||||||
mkdir $(TEMPDIR)/sunet-$(version_id); \
|
mkdir $(TEMPDIR)/sunet-$(version_id); \
|
||||||
|
@ -40,3 +40,8 @@ sunet-$(version_id).tar.gz: $(sunet_files)
|
||||||
tar czf sunet-$(version_id).tar.gz sunet-$(version_id); \
|
tar czf sunet-$(version_id).tar.gz sunet-$(version_id); \
|
||||||
mv sunet-$(version_id).tar.gz $$sunet_root; \
|
mv sunet-$(version_id).tar.gz $$sunet_root; \
|
||||||
rm -rf sunet-$(version_id)
|
rm -rf sunet-$(version_id)
|
||||||
|
|
||||||
|
.PHONY: tags
|
||||||
|
tags:
|
||||||
|
find -name "*.scm" | etags -
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue