diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-03-31 08:42:40 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-03-31 08:42:40 +0000 |
commit | 754ba163b105d22e1c80b267aa2e821719cee077 (patch) | |
tree | 177f4b90703adb9b99cc4a0e4b12e1761f1ee4c6 /Makefile | |
parent | 7b210745c51f43a010960ae23f8c998c8d1dce86 (diff) | |
download | mandoc-754ba163b105d22e1c80b267aa2e821719cee077.tar.gz |
Added new version information. Fixing up Makefile a bit.VERSION.1.9.22
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 16 |
1 files changed, 12 insertions, 4 deletions
@@ -10,13 +10,21 @@ INSTALL_DATA = install -m 0444 INSTALL_LIB = install -m 0644 INSTALL_MAN = $(INSTALL_DATA) -VERSION = 1.9.21 +VERSION = 1.9.22 VDATE = 31 March 2010 -VFLAGS = -DVERSION="\"$(VERSION)\"" -DHAVE_CONFIG_H -DUGLY +VFLAGS = -DVERSION="\"$(VERSION)\"" WFLAGS = -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings -CFLAGS += -g $(VFLAGS) $(WFLAGS) -#CFLAGS += -DOSNAME="\"OpenBSD 4.5\"" +CFLAGS += -g $(WFLAGS) $(VFLAGS) -DHAVE_CONFIG_H + +# Specify this if you want to hard-code the operating system to appear +# in the lower-left hand corner of -mdoc manuals. +# CFLAGS += -DOSNAME="\"OpenBSD 4.5\"" + +# Specify this if you want to accept Xo/Xc macros extending the head of +# block full-implicit macros. +# CFLAGS += -DUGLY + LINTFLAGS += $(VFLAGS) MANDOCFLAGS = -Wall -fstrict |