]> git.cameronkatri.com Git - mandoc.git/commitdiff
Renamed mandoc.c to libmandoc.c. This is in the efforts of getting a
authorKristaps Dzonsons <kristaps@bsd.lv>
Mon, 5 Jul 2010 20:00:55 +0000 (20:00 +0000)
committerKristaps Dzonsons <kristaps@bsd.lv>
Mon, 5 Jul 2010 20:00:55 +0000 (20:00 +0000)
cleaner namespace for functions across the entire system (mandoc.h:
getting parsed-string values, or declarations necessary for the AST
data), and compiler functions (libmandoc.h: back-end functions and
declarations).

Makefile
libmandoc.c [moved from mandoc.c with 99% similarity]

index edeb600f6667cc6c7208debeee00c5eea83a9edf..2f8781148aff6771ea738150749ce8fbed752838 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -37,11 +37,11 @@ ROFFSRCS   = roff.c
 
 ROFFOBJS   = roff.o
 
-MANDOCLNS  = mandoc.ln
+MANDOCLNS  = libmandoc.ln
 
-MANDOCSRCS = mandoc.c
+MANDOCSRCS = libmandoc.c
 
-MANDOCOBJS = mandoc.o
+MANDOCOBJS = libmandoc.o
 
 MDOCLNS           = mdoc_macro.ln mdoc.ln mdoc_hash.ln mdoc_strings.ln \
             mdoc_argv.ln mdoc_validate.ln mdoc_action.ln \
@@ -61,7 +61,7 @@ MANLNS           = man_macro.ln man.ln man_hash.ln man_validate.ln \
 MANOBJS           = man_macro.o man.o man_hash.o man_validate.o \
             man_action.o man_argv.o
 MANSRCS           = man_macro.c man.c man_hash.c man_validate.c \
-            man_action.c mandoc.c man_argv.c
+            man_action.c libmandoc.c man_argv.c
 
 MAINLNS           = main.ln mdoc_term.ln chars.ln term.ln tree.ln \
             compat.ln man_term.ln html.ln mdoc_html.ln \
@@ -233,7 +233,7 @@ man_html.ln man_html.o: man_html.c html.h man.h out.h
 
 out.ln out.o: out.c out.h
 
-mandoc.ln mandoc.o: mandoc.c libmandoc.h
+libmandoc.ln libmandoc.o: libmandoc.c libmandoc.h
 
 tree.ln tree.o: tree.c man.h mdoc.h
 
similarity index 99%
rename from mandoc.c
rename to libmandoc.c
index a923a3686a4eab640d2e4a1bf5035bff0c772aa8..b21b716d33a3da0146c7c6ac4e0a3fb12a62582d 100644 (file)
--- a/mandoc.c
@@ -1,4 +1,4 @@
-/*     $Id: mandoc.c,v 1.19 2010/06/19 20:46:28 kristaps Exp $ */
+/*     $Id: libmandoc.c,v 1.1 2010/07/05 20:00:55 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@bsd.lv>
  *