From 681ecd9a4fa939a2e57c14bb263d8f288e3b14c9 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Sat, 3 Jun 2017 14:29:44 -0400 Subject: [PATCH] Use "adoc" extension for asciidoc, it's the GitLab convention. --- Makefile | 6 +++--- README.adoc | 2 +- advent.txt => advent.adoc | 0 history.txt => history.adoc | 0 4 files changed, 4 insertions(+), 4 deletions(-) rename advent.txt => advent.adoc (100%) rename history.txt => history.adoc (100%) diff --git a/Makefile b/Makefile index 8cdf1b3..b3500c3 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ ifeq ($(UNAME_S),Linux) endif OBJS=main.o init.o actions1.o actions2.o score.o misc.o database.o -SOURCES=$(OBJS:.o=.c) COPYING NEWS README TODO adventure.text advent.text control advent.h funcs.h +SOURCES=$(OBJS:.o=.c) COPYING NEWS README TODO adventure.text advent.adoc control advent.h funcs.h .c.o: $(CC) $(CCFLAGS) $(DBX) -c $< @@ -48,9 +48,9 @@ check: advent cd tests; $(MAKE) --quiet # Requires asciidoc and xsltproc/docbook stylesheets. -.asc.6: advent.txt +.asc.6: advent.adoc a2x --doctype manpage --format manpage $< -.asc.html: advent.txt +.asc.html: advent.adoc a2x --doctype manpage --format xhtml -D . $< rm -f docbook-xsl.css diff --git a/README.adoc b/README.adoc index 3426278..b513dc4 100644 --- a/README.adoc +++ b/README.adoc @@ -5,7 +5,7 @@ This code is a forward-port of the Crowther/Woods Adventure 2.5 from development written by the original authors. The authors have given permission and encouragement for this release. -The file history.txt contains a more detailed history of this game +The file history.adoc contains a more detailed history of this game and its ancestors. This project is called "Open Adventure" because it's not at all clear diff --git a/advent.txt b/advent.adoc similarity index 100% rename from advent.txt rename to advent.adoc diff --git a/history.txt b/history.adoc similarity index 100% rename from history.txt rename to history.adoc -- 2.31.1