diff options
author | B. Watson <urchlay@slackware.uk> | 2024-12-12 16:46:35 -0500 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2024-12-12 16:48:20 -0500 |
commit | 343fd43b95960f59a3bf901f59503757b81a5592 (patch) | |
tree | 6654e44cb883739cffbab0a7753b106f8d5c5360 /Makefile | |
parent | e5735eacb8a55c147c7829c3bc9f2dfea895b165 (diff) | |
download | uxd-343fd43b95960f59a3bf901f59503757b81a5592.tar.gz |
fix Makefile, dashes in hex dump, red for codepoints > U+10FFFF, fix spacing.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,11 +1,15 @@ CFLAGS=-O2 -fPIC -Wall +.PHONY: all test man clean + all: uxd man test: uxd ./uxd -man: uxd.rst +man: uxd.1 + +uxd.1: uxd.rst rst2man uxd.rst > uxd.1 clean: |