]> git.cameronkatri.com Git - mandoc.git/blobdiff - Makefile
Reduce the amount of code by moving the three copies of the ohash
[mandoc.git] / Makefile
index cc7fd8ab00f178444f08a66aef24b11ecdacc042..c101c6ff0b100c6a98b5ae288a2f4e334f299686 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.464 2015/07/14 23:16:29 schwarze Exp $
+# $Id: Makefile,v 1.468 2015/10/13 15:53:05 schwarze Exp $
 #
 # Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
 # Copyright (c) 2011, 2013, 2014, 2015 Ingo Schwarze <schwarze@openbsd.org>
@@ -20,6 +20,7 @@ VERSION = 1.13.3
 # === LIST OF FILES ====================================================
 
 TESTSRCS        = test-dirent-namlen.c \
+                  test-err.c \
                   test-fgetln.c \
                   test-fts.c \
                   test-getsubopt.c \
@@ -27,6 +28,7 @@ TESTSRCS       = test-dirent-namlen.c \
                   test-mkdtemp.c \
                   test-mmap.c \
                   test-ohash.c \
+                  test-progname.c \
                   test-reallocarray.c \
                   test-sqlite3.c \
                   test-sqlite3_errstr.c \
@@ -43,6 +45,7 @@ TESTSRCS       = test-dirent-namlen.c \
 SRCS            = att.c \
                   cgi.c \
                   chars.c \
+                  compat_err.c \
                   compat_fgetln.c \
                   compat_fts.c \
                   compat_getsubopt.c \
@@ -73,6 +76,7 @@ SRCS           = att.c \
                   man_validate.c \
                   mandoc.c \
                   mandoc_aux.c \
+                  mandoc_ohash.c \
                   mandocdb.c \
                   manpage.c \
                   manpath.c \
@@ -93,6 +97,7 @@ SRCS           = att.c \
                   roff.c \
                   soelim.c \
                   st.c \
+                  tag.c \
                   tbl.c \
                   tbl_data.c \
                   tbl_html.c \
@@ -147,6 +152,7 @@ DISTFILES    = INSTALL \
                   mandoc_headers.3 \
                   mandoc_html.3 \
                   mandoc_malloc.3 \
+                  mandoc_ohash.h \
                   mansearch.3 \
                   mansearch.h \
                   mchars_alloc.3 \
@@ -160,6 +166,7 @@ DISTFILES    = INSTALL \
                   soelim.1 \
                   st.in \
                   style.css \
+                  tag.h \
                   tbl.3 \
                   tbl.7 \
                   term.h \
@@ -193,11 +200,13 @@ LIBMANDOC_OBJS     = $(LIBMAN_OBJS) \
                   chars.o \
                   mandoc.o \
                   mandoc_aux.o \
+                  mandoc_ohash.o \
                   msec.o \
                   preconv.o \
                   read.o
 
-COMPAT_OBJS     = compat_fgetln.o \
+COMPAT_OBJS     = compat_err.o \
+                  compat_fgetln.o \
                   compat_fts.o \
                   compat_getsubopt.o \
                   compat_isblank.o \
@@ -234,6 +243,7 @@ BASE_OBJS    = $(MANDOC_HTML_OBJS) \
                   main.o \
                   manpath.o \
                   out.o \
+                  tag.o \
                   tree.o
 
 MAIN_OBJS       = $(BASE_OBJS)
@@ -400,7 +410,7 @@ man.cgi: $(CGI_OBJS) libmandoc.a
        $(CC) $(LDFLAGS) $(STATIC) -o $@ $(CGI_OBJS) libmandoc.a $(DBLIB)
 
 demandoc: $(DEMANDOC_OBJS) libmandoc.a
-       $(CC) $(LDFLAGS) -o $@ $(DEMANDOC_OBJS) libmandoc.a
+       $(CC) $(LDFLAGS) -o $@ $(DEMANDOC_OBJS) libmandoc.a -lz
 
 soelim: $(SOELIM_OBJS) compat_reallocarray.o
        $(CC) $(LDFLAGS) -o $@ $(SOELIM_OBJS) compat_reallocarray.o