mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-16 19:40:07 +08:00
0631279394
- Also, harmonize libm to use CHEWOUT_FILES like libc, rather than chobj. Update documentation appropriately. * HOWTO: Update. * Makefile.shared: Move documentation rules to here... * libc/argz/Makefile.am: ... from here ... * libc/ctype/Makefile.am: ... and here. * libc/errno/Makefile.am: Ditto. * libc/iconv/Makefile.am: Ditto. * libc/iconv/ccs/Makefile.am : Ditto. * libc/iconv/ces/Makefile.am: Ditto. * libc/iconv/lib/Makefile.am: Ditto. * libc/locale/Makefile.am: Ditto. * libc/misc/Makefile.am: Ditto. * libc/posix/Makefile.am: Ditto. * libc/reent/Makefile.am: Ditto. * libc/search/Makefile.am: Ditto. * libc/stdio/Makefile.am: Ditto. * libc/stdio64/Makefile.am: Ditto. * libc/stdlib/Makefile.am : Ditto. * libc/string/Makefile.am: Ditto. * libc/syscalls/Makefile.am: Ditto. * libc/time/Makefile.am : Ditto. * libc/unix/Makefile.am: Ditto. * libc/xdr/Makefile.am: Ditto. * libm/common/Makefile.am: Ditto. * libm/complex/Makefile.am: Ditto. * libm/math/Makefile.am: Ditto. * libm/mathfp/Makefile.am: Ditto.
29 lines
500 B
Makefile
29 lines
500 B
Makefile
objectlist.awk.in: $(noinst_LTLIBRARIES)
|
|
-rm -f objectlist.awk.in
|
|
for i in `ls *.lo` ; \
|
|
do \
|
|
echo $$i `pwd`/$$i >> objectlist.awk.in ; \
|
|
done
|
|
|
|
#
|
|
# documentation rules
|
|
#
|
|
|
|
SUFFIXES = .def
|
|
|
|
CHEW = ${top_builddir}/../doc/makedoc -f $(top_srcdir)/../doc/doc.str
|
|
|
|
.c.def:
|
|
$(CHEW) < $< > $*.def 2> $*.ref
|
|
touch stmp-def
|
|
|
|
TARGETDOC ?= ../tmp.texi
|
|
|
|
doc: $(CHEWOUT_FILES)
|
|
for chapter in $(CHAPTERS) ; \
|
|
do \
|
|
cat $(srcdir)/$$chapter >> $(TARGETDOC) ; \
|
|
done
|
|
|
|
CLEANFILES = $(CHEWOUT_FILES) *.ref
|