Created SILC GIT repository.
[silc.git] / util / robodoc / Examples / CPP / makefile
diff --git a/util/robodoc/Examples/CPP/makefile b/util/robodoc/Examples/CPP/makefile
deleted file mode 100644 (file)
index 7fc75ae..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-# $Id$
-
-ROBODOC=robodoc
-DOCS=muppets.cpp.html muppets.h.html
-XREF=$(DOCS:.html=.xref)
-
-all: masterindex.html
-
-myclean:
-       rm -f *~
-       rm -f *.xref
-       rm -f *.xrefs
-       rm -f *.html
-       rm -f xref_files
-#
-# This makefile shows how with a few rules you can generate
-# the documentation from all your sources.
-#
-
-#
-# create xrefs file (file with the names of all .xref files).
-#
-muppets.xrefs : $(XREF)
-       /bin/ls *.xref > $@
-
-#
-# Rule to create an .xref file.
-#
-%.xref : % muppets.xrefs
-       $(ROBODOC) $< $(@:.xref=.html) INTERNAL -g $@ -v
-
-#
-# Rule to create an .html file.
-#
-%.html : %
-       $(ROBODOC) $< $@ HTML INTERNAL -x muppets.xrefs -v
-
-#
-#
-#
-masterindex.html : muppets.xrefs $(DOCS)
-       $(ROBODOC) $< $@ INDEX HTML
-
-