summaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-03-31 13:50:19 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-03-31 13:50:19 +0000
commit4cd2606cca8b6f78a9d90bec6f4fa0c45c2dcd0f (patch)
tree428f5d4c3b3e002a94712ec6afcebb59424910b9 /Makefile
parent3a15d29d3fd3d564da6a32a0ac9b49872b7d523c (diff)
downloadmandoc-4cd2606cca8b6f78a9d90bec6f4fa0c45c2dcd0f.tar.gz
mandoc-4cd2606cca8b6f78a9d90bec6f4fa0c45c2dcd0f.tar.zst
mandoc-4cd2606cca8b6f78a9d90bec6f4fa0c45c2dcd0f.zip
General clean-ups.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile31
1 files changed, 14 insertions, 17 deletions
diff --git a/Makefile b/Makefile
index 961864cf..acc4cb9c 100644
--- a/Makefile
+++ b/Makefile
@@ -9,21 +9,21 @@ INSTALL_DATA = install -m 0444
INSTALL_LIB = install -m 0644
INSTALL_MAN = $(INSTALL_DATA)
-VERSION = 1.7.7
-VDATE = 27 March 2009
+VERSION = 1.7.8
+VDATE = 31 March 2009
VFLAGS = -DVERSION=\"$(VERSION)\"
CFLAGS += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -g
LINTFLAGS += $(VFLAGS)
CFLAGS += $(VFLAGS)
-MDOCLNS = mdoc_macro.ln mdoc.ln mdoc_hash.ln strings.ln xstd.ln \
- mdoc_argv.ln mdoc_validate.ln mdoc_action.ln lib.ln \
- att.ln arch.ln vol.ln msec.ln st.ln
-MDOCOBJS = mdoc_macro.o mdoc.o mdoc_hash.o strings.o xstd.o \
+MDOCLNS = mdoc_macro.ln mdoc.ln mdoc_hash.ln mdoc_strings.ln \
+ mdoc_argv.ln mdoc_validate.ln mdoc_action.ln \
+ lib.ln att.ln arch.ln vol.ln msec.ln st.ln
+MDOCOBJS = mdoc_macro.o mdoc.o mdoc_hash.o mdoc_strings.o \
mdoc_argv.o mdoc_validate.o mdoc_action.o lib.o att.o \
arch.o vol.o msec.o st.o
-MDOCSRCS = mdoc_macro.c mdoc.c mdoc_hash.c strings.c xstd.c \
+MDOCSRCS = mdoc_macro.c mdoc.c mdoc_hash.c mdoc_strings.c \
mdoc_argv.c mdoc_validate.c mdoc_action.c lib.c att.c \
arch.c vol.c msec.c st.c
@@ -34,11 +34,11 @@ MANOBJS = man_macro.o man.o man_hash.o man_validate.o \
MANSRCS = man_macro.c man.c man_hash.c man_validate.c \
man_action.c
-MAINLNS = main.ln mdoc_term.ln ascii.ln terminal.ln tree.ln \
+MAINLNS = main.ln mdoc_term.ln ascii.ln term.ln tree.ln \
compat.ln man_term.ln
-MAINOBJS = main.o mdoc_term.o ascii.o terminal.o tree.o compat.o \
+MAINOBJS = main.o mdoc_term.o ascii.o term.o tree.o compat.o \
man_term.o
-MAINSRCS = main.c mdoc_term.c ascii.c terminal.c tree.c compat.c \
+MAINSRCS = main.c mdoc_term.c ascii.c term.c tree.c compat.c \
man_term.c
LLNS = llib-llibmdoc.ln llib-llibman.ln llib-lmandoc.ln
@@ -135,8 +135,8 @@ mdoc_macro.o: mdoc_macro.c libmdoc.h
mdoc_term.ln: mdoc_term.c term.h mdoc.h
mdoc_term.o: mdoc_term.c term.h mdoc.h
-strings.ln: strings.c libmdoc.h
-strings.o: strings.c libmdoc.h
+mdoc_strings.ln: mdoc_strings.c libmdoc.h
+mdoc_strings.o: mdoc_strings.c libmdoc.h
man_hash.ln: man_hash.c libman.h
man_hash.o: man_hash.c libman.h
@@ -153,11 +153,8 @@ man.o: man.c libman.h
main.ln: main.c mdoc.h
main.o: main.c mdoc.h
-terminal.ln: terminal.c term.h man.h mdoc.h
-terminal.o: terminal.c term.h man.h mdoc.h
-
-xstd.ln: xstd.c libmdoc.h
-xstd.o: xstd.c libmdoc.h
+term.ln: term.c term.h man.h mdoc.h
+term.o: term.c term.h man.h mdoc.h
mdoc_argv.ln: mdoc_argv.c libmdoc.h
mdoc_argv.o: mdoc_argv.c libmdoc.h