aboutsummaryrefslogtreecommitdiffstats
path: root/cmake/doc/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/doc/Makefile')
-rw-r--r--cmake/doc/Makefile30
1 files changed, 0 insertions, 30 deletions
diff --git a/cmake/doc/Makefile b/cmake/doc/Makefile
deleted file mode 100644
index bfb4596c..00000000
--- a/cmake/doc/Makefile
+++ /dev/null
@@ -1,30 +0,0 @@
-MKDIR ?= mkdir -p
-RM ?= rm -f
-RM_REC ?= $(RM) -r
-
-PASDOC ?= pasdoc$(EXEEXT)
-
-DOCDIR ?= ./pasdoc
-SRCDIR := ../src
-INCLUDE := -I$(SRCDIR)
-DEFINES := -DPASDOC
-SRCFILES := $(SRCDIR)/base/*.pas \
- $(SRCDIR)/screens/*.pas \
- $(SRCDIR)/menu/*.pas \
- $(SRCDIR)/media/*.pas
-
-.PHONY: all
-all: doc
-
-.PHONY: doc
-doc: clean
- $(MKDIR) $(DOCDIR)
-# pasdoc does not return a meaningful exit code (e.g. an error code on success) so always return true
- $(PASDOC) --staronly --ignore-leading=* $(INCLUDE) $(DEFINES) --output=$(DOCDIR) $(SRCFILES); true
-# check if doc was created
- @test -f $(DOCDIR)/index.html
-
-.PHONY: clean
-clean:
- $(RM) $(DOCDIR)/*.html $(DOCDIR)/*.css $(DOCDIR)/*.gif
- -rmdir $(DOCDIR) \ No newline at end of file