diff options
author | bwarsaw <> | 2006-09-17 18:16:07 +0000 |
---|---|---|
committer | bwarsaw <> | 2006-09-17 18:16:07 +0000 |
commit | 34d6ece8a454e5d1d027ed106ba039a0a88db36d (patch) | |
tree | 6dc6f8711b20124ce38491300d5fb95e1c022206 /admin/www/Makefile | |
parent | b7f0fb3c888c1d331c2239fba0b8332a3bf240f2 (diff) | |
download | mailman2-34d6ece8a454e5d1d027ed106ba039a0a88db36d.tar.gz mailman2-34d6ece8a454e5d1d027ed106ba039a0a88db36d.tar.xz mailman2-34d6ece8a454e5d1d027ed106ba039a0a88db36d.zip |
Copy the mm21 admin directory out of the mm21 branch. We'll svn
external the latter to get that back into the release, but I really
don't want to maintain multiple copies of the web pages.
Diffstat (limited to 'admin/www/Makefile')
-rw-r--r-- | admin/www/Makefile | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/admin/www/Makefile b/admin/www/Makefile deleted file mode 100644 index 12d16cde..00000000 --- a/admin/www/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -HT2HTML = $(HOME)/projects/ht2html/ht2html.py - -HTSTYLE = MMGenerator -HTALLFLAGS = -f -s $(HTSTYLE) -HTROOT = . -HTFLAGS = $(HTALLFLAGS) -r $(HTROOT) -HTRELDIR = . -# Use args for rsync like -a without the permission setting flag. I want to -# keep the permissions set the way they are on the destination files, not on -# my source files. Also add verbosity, compression, and ignoring CVS. -RSYNC_ARGS = -rltgoDCvz - -SOURCES = $(shell echo *.ht) -EXTRA_TARGETS = faq.html todo.html -TARGETS = $(filter-out *.html,$(SOURCES:%.ht=%.html)) $(EXTRA_TARGETS) -GENERATED_HTML= $(SOURCES:.ht=.html) - -.SUFFIXES: .ht .html -.ht.html: - $(HT2HTML) $(HTFLAGS) $(HTRELDIR)/$< - -all: $(TARGETS) - -faq.ht: ../../FAQ - ../bin/faq2ht.py $< $@ - -todo.ht: ../../TODO - ../bin/mm2do $< $@ - -install: - -rsync $(RSYNC_ARGS) . www.list.org:mailman.list.org - -rsync $(RSYNC_ARGS) . mailman.sf.net:mailman/htdocs - -rsync $(RSYNC_ARGS) . $(HOME)/projects/mailman-gnu - -clean: - -rm $(GENERATED_HTML) - -rm faq.ht todo.ht |