[FriBidi-commit] fribidi/doc Makefile.am,1.4,1.5
Behdad Esfahbod
behdad at pdx.freedesktop.org
Tue May 4 08:05:22 EST 2004
Update of /cvs/fribidi/fribidi/doc
In directory pdx:/tmp/cvs-serv16180/doc
Modified Files:
Makefile.am
Log Message:
Changed the run data structure from a double-terminated deque, to a
circular deque with a single sentinel. To debug that, also added some assert
stuff, added function attributes, deprecated old interfaces, and humm, that it
for now.
Index: Makefile.am
===================================================================
RCS file: /cvs/fribidi/fribidi/doc/Makefile.am,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- a/Makefile.am 28 Apr 2004 03:20:22 -0000 1.4
+++ b/Makefile.am 3 May 2004 22:05:19 -0000 1.5
@@ -33,13 +33,17 @@
MAINTAINERCLEANFILES = $(man3)
-C2MANFLAGS = $(includepath) -DDONT_HAVE_FRIBIDI_CONFIG_H -M "$(PACKAGE_NAME)"
+C2MANFLAGS = $(includepath) \
+ -DDONT_HAVE_FRIBIDI_CONFIG_H \
+ -M "Programmer's Manual" \
+ -m "$(PACKAGE_NAME) $(PACKAGE_VERSION)"
+
VPATH += $(includevpath)
c2man.stamp: $(headers)
@$(RM) $@.tmp
@touch $@.tmp
- $(top_srcdir)/missing --run c2man -T n $(C2MANFLAGS) $^
+ $(top_srcdir)/missing --run c2man -T n $(C2MANFLAGS) $^ || true
@mv $@.tmp $@
$(man3): c2man.stamp
@@ -47,5 +51,6 @@
touch $@; \
else \
$(RM) $<; \
- $(MAKE) $(AM_MAKEFLAGS) $<; \
+ $(MAKE) $(AM_MAKEFLAGS) $< || true; \
+ touch $@; \
fi
More information about the FriBidi-Commit
mailing list