summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/listings/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/listings/Makefile')
-rw-r--r--Master/texmf-dist/doc/latex/listings/Makefile12
1 files changed, 11 insertions, 1 deletions
diff --git a/Master/texmf-dist/doc/latex/listings/Makefile b/Master/texmf-dist/doc/latex/listings/Makefile
index d8f94375e53..088bd8e1b60 100644
--- a/Master/texmf-dist/doc/latex/listings/Makefile
+++ b/Master/texmf-dist/doc/latex/listings/Makefile
@@ -2,7 +2,7 @@
#
# This file generates files required to use the listings package.
#
-# $Id: Makefile 127 2014-03-04 19:54:08Z j_hoffmann $
+# $Id: Makefile 152 2014-09-06 17:28:15Z j_hoffmann $
#
# (c) 2007 Brooks Moses
# (c) 2013 Jobst Hoffmann
@@ -78,6 +78,9 @@ lstdrvrs.pdf: lstdrvrs.dtx
acm-tests:
cd testing; make acm
+bash-tests:
+ cd testing; make bash
+
fortran-tests:
cd testing; make fortran
@@ -139,6 +142,9 @@ tar-dist: $(DISTRIBUTION_FILES)
$(MAKE) lstdrvrs.pdf; \
tar cfvz $(PACKAGE)-$(VERSION).tgz $^;
+release:
+ @echo "not implemented yet"
+
## Documentation target
help::
$(info Usage:)
@@ -167,6 +173,10 @@ help::
$(info make tar-dist)
$(info $(empty) generates a distributable version of the listings)
$(info $(empty) package)
+ $(info )
+ $(info make release)
+ $(info $(empty) creates a new tagged version of the package based on)
+ $(info $(empty) the contents of listings.version and announcement.txt)
@echo "" # prevents message "nothing to do ..."
### Makefile ends here ---