From 6fb94f8e9abd42f22bdccc1e065a52c43e152aff Mon Sep 17 00:00:00 2001 From: David Schleef Date: Mon, 2 Dec 2002 22:39:57 +0000 Subject: [PATCH] move to php --- Makefile | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100755 Makefile diff --git a/Makefile b/Makefile deleted file mode 100755 index d64f43b..0000000 --- a/Makefile +++ /dev/null @@ -1,32 +0,0 @@ - -PAGES := intro documentation hardware download links mailinglist -OTHERFILES := comedi_logo.gif - -DESTDIR := /home/www/comedi.org/ - -all: $(patsubst %,%.html,$(PAGES)) - -frame.pre: frame.html - grep -B 99999 CONTENT frame.html | grep -v CONTENT >frame.pre - -frame.post: frame.html - grep -A 99999 CONTENT frame.html | grep -v CONTENT >frame.post - -%.html: frame.pre frame.post %-x.html - cat frame.pre $(patsubst %.html,%-x.html,$@) frame.post >$@ - -clean: - -rm frame.pre frame.post - -rm $(patsubst %,%.html,$(PAGES)) - -install: - -mkdir $(DESTDIR) - cp $(patsubst %,%.html,$(PAGES)) $(DESTDIR) - cp $(OTHERFILES) $(DESTDIR) - cd $(DESTDIR) && ln -sf intro.html index.html - cd $(DESTDIR) && ln -sf ~ftp/pub/comedi download - -install_doc: - install -m 644 ../comedilib/doc/html/*.html $(DESTDIR)/doc - -