diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-02-20 07:45:41 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-02-20 07:45:41 +0000 |
commit | 0d0191e1509b75f09a185c0ecd6600b832ff9bcc (patch) | |
tree | f8f0fce51801b8d800762cf8571d0def5cb4ca96 /Makefile | |
parent | 2d394f98033c052fc94dabbbb074c32af0a74123 (diff) | |
download | mandoc-0d0191e1509b75f09a185c0ecd6600b832ff9bcc.tar.gz |
Removed (moving) tree.c.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
@@ -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 |