version 1.36, 2008/12/08 16:29:57 |
version 1.52, 2008/12/15 03:13:01 |
|
|
.SUFFIXES: .html .7 |
VERSION = 1.1.0 |
|
|
VERSION = 1.0.1 |
CFLAGS += -W -Wall -Wno-unused-parameter -g |
|
|
# FIXME |
LNS = macro.ln mdoc.ln mdocml.ln hash.ln strings.ln |
CFLAGS += -W -Wall -Wno-unused-parameter -g -DDEBUG |
|
|
|
LINTFLAGS += -c -e -f -u |
LLNS = llib-llibmdoc.ln llib-lmdocml.ln |
|
|
LNS = mdocml.ln html.ln xml.ln libmdocml.ln roff.ln ml.ln mlg.ln \ |
LIBS = libmdoc.a |
compat.ln tokens.ln literals.ln |
|
|
|
LLNS = llib-lmdocml.ln |
OBJS = macro.o mdoc.o mdocml.o hash.o strings.o |
|
|
LIBS = libmdocml.a |
SRCS = macro.c mdoc.c mdocml.c hash.c strings.c |
|
|
OBJS = mdocml.o html.o xml.o libmdocml.o roff.o ml.o mlg.o \ |
HEADS = mdoc.h |
compat.o tokens.o literals.o |
|
|
|
SRCS = mdocml.c html.c xml.c libmdocml.c roff.c ml.c mlg.c \ |
BINS = mdocml |
compat.c tokens.c literals.c |
|
|
|
HEADS = libmdocml.h private.h ml.h roff.h |
CLEAN = $(BINS) $(LNS) $(LLNS) $(LIBS) $(OBJS) |
|
|
MANS = mdocml.1 index.7 |
all: $(BINS) |
|
|
HTML = index.html mdocml.html |
lint: $(LLNS) |
|
|
XML = index.xml |
mdocml: mdocml.o libmdoc.a |
|
$(CC) $(CFLAGS) -o $@ mdocml.o libmdoc.a |
|
|
CLEAN = mdocml mdocml.tgz $(LLNS) $(LNS) $(OBJS) $(LIBS) $(HTML) \ |
|
$(XML) |
|
|
|
INSTALL = Makefile $(HEADS) $(SRCS) $(MANS) |
|
|
|
FAIL = test.0 test.1 test.2 test.3 test.4 test.5 test.6 \ |
|
test.15 test.20 test.22 test.24 test.26 test.27 test.30 \ |
|
test.36 test.37 test.40 test.50 test.61 test.64 test.65 \ |
|
test.66 |
|
|
|
SUCCEED = test.7 test.8 test.9 test.10 test.11 test.12 test.13 \ |
|
test.14 test.16 test.17 test.18 test.19 test.21 test.23 \ |
|
test.25 test.28 test.29 test.31 test.32 test.33 test.34 \ |
|
test.35 test.38 test.39 test.41 test.42 test.43 test.44 \ |
|
test.45 test.46 test.47 test.48 test.49 test.51 test.52 \ |
|
test.54 test.55 test.56 test.57 test.58 test.59 test.60 \ |
|
test.62 test.63 test.67 |
|
|
|
all: mdocml |
|
|
|
lint: llib-lmdocml.ln |
|
|
|
dist: mdocml.tgz |
|
|
|
www: $(HTML) $(XML) |
|
|
|
regress: mdocml |
|
@for f in $(FAIL); do \ |
|
echo "./mdocml $$f" ; \ |
|
./mdocml $$f 1>/dev/null 2>/dev/null || continue ; \ |
|
done |
|
@for f in $(SUCCEED); do \ |
|
echo "./mdocml $$f" ; \ |
|
./mdocml $$f 1>/dev/null || exit 1 ; \ |
|
done |
|
|
|
mdocml: mdocml.o libmdocml.a |
|
$(CC) $(CFLAGS) -o $@ mdocml.o libmdocml.a |
|
|
|
clean: |
clean: |
rm -f $(CLEAN) |
rm -f $(CLEAN) |
|
|
index.html: index.7 mdocml.css |
llib-llibmdoc.ln: macro.ln mdoc.ln hash.ln strings.ln |
./mdocml -W -fhtml -e -o $@ index.7 |
$(LINT) $(LINTFLAGS) -Clibmdoc mdoc.ln macro.ln hash.ln strings.ln |
|
|
index.xml: index.7 mdocml.css |
llib-lmdocml.ln: mdocml.ln llib-llibmdoc.ln |
./mdocml -W -o $@ index.7 |
$(LINT) $(LINTFLAGS) -Cmdocml mdocml.ln llib-llibmdoc.ln |
|
|
mdocml.html: mdocml.1 mdocml.css |
macro.ln: macro.c private.h |
./mdocml -W -fhtml -e -o $@ mdocml.1 |
|
|
|
install-www: www dist |
macro.o: macro.c private.h |
install -m 0644 mdocml.tgz $(PREFIX)/mdocml-$(VERSION).tgz |
|
install -m 0644 mdocml.tgz $(PREFIX)/mdocml.tgz |
|
install -m 0644 $(HTML) $(XML) $(PREFIX)/ |
|
|
|
mdocml.tgz: $(INSTALL) |
strings.ln: strings.c private.h |
mkdir -p .dist/mdocml/mdocml-$(VERSION)/ |
|
install -m 0644 $(INSTALL) .dist/mdocml/mdocml-$(VERSION)/ |
|
( cd .dist/mdocml/ && tar zcf ../../mdocml.tgz mdocml-$(VERSION)/ ) |
|
rm -rf .dist/ |
|
|
|
llib-lmdocml.ln: mdocml.ln libmdocml.ln html.ln xml.ln roff.ln ml.ln mlg.ln compat.ln tokens.ln literals.ln |
strings.o: strings.c private.h |
$(LINT) $(LINTFLAGS) -Cmdocml mdocml.ln libmdocml.ln html.ln xml.ln roff.ln ml.ln mlg.ln compat.ln tokens.ln literals.ln |
|
|
|
mdocml.ln: mdocml.c libmdocml.h |
hash.ln: hash.c private.h |
|
|
mdocml.o: mdocml.c libmdocml.h |
hash.o: hash.c private.h |
|
|
libmdocml.a: libmdocml.o html.o xml.o roff.o ml.o mlg.o compat.o tokens.o literals.o |
mdoc.ln: mdoc.c private.h |
$(AR) rs $@ libmdocml.o html.o xml.o roff.o ml.o mlg.o compat.o tokens.o literals.o |
|
|
|
xml.ln: xml.c private.h libmdocml.h ml.h |
mdoc.o: mdoc.c private.h |
|
|
xml.o: xml.c private.h libmdocml.h ml.h |
mdocml.ln: mdocml.c mdoc.h |
|
|
html.ln: html.c private.h libmdocml.h |
mdocml.o: mdocml.c mdoc.h |
|
|
html.o: html.c private.h libmdocml.h |
private.h: mdoc.h |
|
|
roff.ln: roff.c private.h roff.h libmdocml.h |
libmdoc.a: macro.o mdoc.o hash.o strings.o |
|
$(AR) rs $@ macro.o mdoc.o hash.o strings.o |
|
|
roff.o: roff.c private.h roff.h libmdocml.h |
|
|
|
libmdocml.ln: libmdocml.c private.h libmdocml.h |
|
|
|
libmdocml.o: libmdocml.c private.h libmdocml.h |
|
|
|
ml.ln: ml.c private.h libmdocml.h ml.h |
|
|
|
ml.o: ml.c private.h libmdocml.h ml.h |
|
|
|
mlg.ln: mlg.c private.h libmdocml.h ml.h |
|
|
|
mlg.o: mlg.c private.h libmdocml.h ml.h |
|
|
|
compat.ln: compat.c |
|
|
|
compat.o: compat.c |
|