diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-02-23 07:09:13 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-02-23 07:09:13 +0000 |
commit | 63967ed8bf5ca40c3477ce83deda9051e813afd4 (patch) | |
tree | 61c0a4f1c37784718cf9b93f23bb2e604a69f63f /Makefile | |
parent | aa3451385251d0974ed07962c800a38fe4287a2b (diff) | |
download | mandoc-63967ed8bf5ca40c3477ce83deda9051e813afd4.tar.gz |
termact.c -> term.c
term.c -> mdocterm.c
tree.c -> mdoctree.c
Fixed/finished mmain.h.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 17 |
1 files changed, 5 insertions, 12 deletions
@@ -5,9 +5,9 @@ CFLAGS += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -g LIBLNS = macro.ln mdoc.ln hash.ln strings.ln xstd.ln argv.ln \ validate.ln action.ln -TREELNS = mdoctree.ln mmain.ln tree.ln +TREELNS = mdoctree.ln mmain.ln -TERMLNS = mdoctree.ln mmain.ln term.ln termact.ln +TERMLNS = mdoctree.ln mmain.ln term.ln LNS = $(LIBLNS) $(TREELNS) $(TERMLNS) @@ -18,15 +18,14 @@ LIBS = libmdoc.a LIBOBJS = macro.o mdoc.o hash.o strings.o xstd.o argv.o \ validate.o action.o -TERMOBJS= mdocterm.o mmain.o term.o termact.o +TERMOBJS= mdocterm.o mmain.o term.o -TREEOBJS= mdoctree.o mmain.o tree.o +TREEOBJS= mdoctree.o mmain.o OBJS = $(LIBOBJS) $(TERMOBJS) $(TREEOBJS) SRCS = macro.c mdoc.c hash.c strings.c xstd.c argv.c validate.c \ - action.c term.c tree.c termact.c mdoctree.c mdocterm.c \ - mmain.c + action.c term.c mdoctree.c mdocterm.c mmain.c HEADS = mdoc.h private.h term.h mmain.h @@ -140,15 +139,9 @@ uninstall: macro.ln: macro.c private.h macro.o: macro.c private.h -tree.ln: tree.c mdoc.h -tree.o: tree.c mdoc.h - term.ln: term.c term.h term.o: term.c term.h -termact.ln: termact.c term.h -termact.o: termact.c term.h - strings.ln: strings.c private.h strings.o: strings.c private.h |