summaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-02-20 07:45:41 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-02-20 07:45:41 +0000
commit5f092f7efcf8ffa014e85cd8377e5c4aa1dc4147 (patch)
tree8b8619cf77fb659d87d2263f7bd16d1ddb95896b /Makefile
parentc8d42afcb393f8cff8de9a02ec56bede23b8e05c (diff)
downloadmandoc-5f092f7efcf8ffa014e85cd8377e5c4aa1dc4147.tar.gz
mandoc-5f092f7efcf8ffa014e85cd8377e5c4aa1dc4147.tar.zst
mandoc-5f092f7efcf8ffa014e85cd8377e5c4aa1dc4147.zip
Removed (moving) tree.c.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 3 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index e46e1d7d..a5debd89 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ CFLAGS += -W -Wall -Wno-unused-parameter -g
LIBLNS = macro.ln mdoc.ln hash.ln strings.ln xstd.ln argv.ln \
validate.ln action.ln
-BINLNS = tree.ln mdocml.ln
+BINLNS = mdocml.ln
LNS = $(LIBLNS) $(BINLNS)
@@ -16,12 +16,12 @@ LIBS = libmdoc.a
LIBOBJS = macro.o mdoc.o hash.o strings.o xstd.o argv.o \
validate.o action.o
-BINOBJS = tree.o mdocml.o
+BINOBJS = mdocml.o
OBJS = $(LIBOBJS) $(BINOBJS)
SRCS = macro.c mdoc.c mdocml.c hash.c strings.c xstd.c argv.c \
- validate.c action.c tree.c
+ validate.c action.c
HEADS = mdoc.h private.h
@@ -136,10 +136,6 @@ strings.ln: strings.c private.h
strings.o: strings.c private.h
-tree.ln: tree.c mdoc.h
-
-tree.o: tree.c mdoc.h
-
hash.ln: hash.c private.h
hash.o: hash.c private.h