From cacca61a295f79d9757ec543e999f049dee480f4 Mon Sep 17 00:00:00 2001 From: interp Date: Thu, 30 May 2002 14:05:52 +0000 Subject: [PATCH] adjusted names in Makefile to new structure --- Makefile | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 9a4e28d..01b08c1 100644 --- a/Makefile +++ b/Makefile @@ -4,18 +4,17 @@ version_id = 1.0 TEMPDIR = /tmp -sunet_files = ChangeLog \ - Readme \ +sunet_files = Readme \ cgi-script.scm \ cgi-server.scm \ conditionals.scm \ crlf-io.scm \ htmlout.scm \ http-top.scm \ - httpd-access-control.scm \ - httpd-core.scm \ - httpd-error.scm \ - httpd-handlers.scm \ + httpd/access-control.scm \ + httpd/core.scm \ + httpd/error.scm \ + httpd/handlers.scm \ info-gateway.scm \ rman-gateway.scm \ modules.scm \ @@ -32,6 +31,7 @@ sunet_files = ChangeLog \ uri.scm \ url.scm + sunet-$(version_id).tar.gz: $(sunet_files) sunet_root=`pwd`; \ 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); \ mv sunet-$(version_id).tar.gz $$sunet_root; \ rm -rf sunet-$(version_id) + +.PHONY: tags +tags: + find -name "*.scm" | etags - +