summaryrefslogtreecommitdiff
path: root/debian-java-faq/Makefile
diff options
context:
space:
mode:
authorEmmanuel Bourg <ebourg@apache.org>2015-10-07 21:31:37 +0200
committerEmmanuel Bourg <ebourg@apache.org>2015-10-08 00:22:19 +0200
commita426b9ed992fd467856bce42ce1b960379911d9b (patch)
tree36d74cbac8aba3f8ee28c3b8b842a419d4ce35ed /debian-java-faq/Makefile
parent131e8e5f43cfb2e4276cf3d1eaae2825ceb2e0e5 (diff)
downloadjava-common-a426b9ed992fd467856bce42ce1b960379911d9b.tar.gz
Removed the policy and the FAQ (now in the java-policy package)
Diffstat (limited to 'debian-java-faq/Makefile')
-rw-r--r--debian-java-faq/Makefile42
1 files changed, 0 insertions, 42 deletions
diff --git a/debian-java-faq/Makefile b/debian-java-faq/Makefile
deleted file mode 100644
index 75c2ec5..0000000
--- a/debian-java-faq/Makefile
+++ /dev/null
@@ -1,42 +0,0 @@
-# Makefile for a manual in the Debian Documentation Project manuals.sgml
-# tree.
-
-# The directory in which this makefile resides must also contain a file
-# called <directoryname>.sgml, which is the top-level file for the manual
-# in this directory.
-
-# What is the current manual's name
-#MANUAL := $(shell basename $(shell pwd))
-MANUAL := debian-java-faq
-# Where are we publishing to?
-# (this can be overriden by a higher level makefile)
-PUBLISHDIR := /org/www.debian.org/www/doc/manuals
-
-# What do we want by default?
-all: publish
-
-# This target installs the generated HTML in the published directory.
-publish: $(MANUAL).html/index.html
-# fail if there is no PUBLISHDIR
- [ -d $(PUBLISHDIR) ] || exit 1
- rm -f $(PUBLISHDIR)/$(MANUAL)/*.html
- install -d -m 755 $(PUBLISHDIR)/$(MANUAL)
- install -m 644 --preserve-timestamps $(MANUAL).html/*.html \
- $(PUBLISHDIR)/$(MANUAL)/
-
-generate: $(MANUAL).html/index.html
-
-$(MANUAL).html/index.html: $(wildcard *.sgml)
- debiandoc2html $(MANUAL).sgml
-
-# ensure our SGML is valid
-# (add this to $(MANUAL).html rule to prevent building if not)
-validate:
- nsgmls -gues $(MANUAL).sgml
-
-clean:
- rm -rf $(MANUAL).html
-
-distclean: clean
-
-.PHONY: all publish clean distclean validate