1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
# ascii -- interactive ASCII reference
#
# SPDX-FileCopyrightText: (C) Eric S. Raymond <esr@thyrsus.com>
# SPDX-License-Identifier: BSD-2-Clause
PREFIX ?= /usr/local
BINDIR ?= $(PREFIX)/bin
DATADIR ?= $(PREFIX)/share
MANDIR ?= $(DATADIR)/man
CFLAGS += -O -Wall -Wextra -Werror
VERSION=$(shell sed -n <NEWS.adoc '/^[0-9]/s/:.*//p' | head -1)
# Rules
# Note: to suppress the footers with timestamps being generated in HTML,
# we use "-a nofooter".
# To debug asciidoc problems, you may need to run "xmllint --nonet --noout --valid"
# on the intermediate XML that throws an error.
.SUFFIXES: .html .adoc .1
.adoc.1:
asciidoctor -D. -a nofooter -b manpage $<
.adoc.html:
asciidoctor -D. -a nofooter -a webfonts! $<
.PHONY: all clean check cppcheck spellcheck reflow
.PHONY: install uninstall version dist release refresh
# Build
all: ascii ascii.1
ascii: ascii.c splashscreen.h nametable.h
$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -DREVISION='"$(VERSION)"' ascii.c -o ascii
splashscreen.h: splashscreen
sed <splashscreen >splashscreen.h \
-e 's/\\/\\\\/g' \
-e 's/"/\\"/g' \
-e 's/.*/"&" "\\n"/'
nametable.h: nametable
sed <nametable >nametable.h \
-e '/^#/d' \
-e 's/^[A-Za-z ]*: */ /' \
-e 's/%%/ }, {/'
clean:
rm -f ascii ascii.o splashscreen.h nametable.h
rm -f *.tar.gz *.1 *.html
# Validate
check: cppcheck
CPPCHECKOPTS =
cppcheck: nametable.h splashscreen.h
@cppcheck --quiet -DREVISION='"$(VERSION)"' $(CPPCHECKOPTS) ascii.c
spellcheck:
spellcheck ascii.adoc
reflow:
@clang-format --style="{IndentWidth: 8, UseTab: ForIndentation}" -i $$(find . -name "*.[ch]")
# Install/uninstall
install:
install -d $(DESTDIR)$(BINDIR)
install -m 755 ascii $(DESTDIR)$(BINDIR)/ascii
install -d $(DESTDIR)$(MANDIR)
install -d $(DESTDIR)$(MANDIR)/man1
install ascii.1 $(DESTDIR)$(MANDIR)/man1/ascii.1
uninstall:
rm -f $(DESTDIR)$(BINDIR)/ascii
rm -f $(DESTDIR)$(MANDIR)/man1/ascii.1
# Export
SOURCES = \
README.adoc COPYING NEWS.adoc control Makefile \
ascii.c ascii.adoc splashscreen nametable
version:
@echo $(VERSION)
ascii-$(VERSION).tar.gz: $(SOURCES)
mkdir ascii-$(VERSION)
cp -r $(SOURCES) ascii-$(VERSION)
tar -czf ascii-$(VERSION).tar.gz ascii-$(VERSION)
rm -fr ascii-$(VERSION)
ls -l ascii-$(VERSION).tar.gz
dist: ascii-$(VERSION).tar.gz
release: ascii-$(VERSION).tar.gz ascii.html
shipper version=$(VERSION) | sh -e -x
refresh: ascii.html
shipper -N -w version=$(VERSION) | sh -e -x
# end
|