diff options
author | Roland McGrath <roland@hack.frob.com> | 2011-06-06 15:57:10 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2011-06-06 16:16:55 -0700 |
commit | 069e52f8362adc26a6b7ad2b32664a68d0cc7a29 (patch) | |
tree | 2f975a032e75ce46f0035507835a2e06a50c32b5 /manual/Makefile | |
parent | f16846a5f279b4eb5f80821e8d27ffa73b1a1f7d (diff) | |
download | glibc-069e52f8362adc26a6b7ad2b32664a68d0cc7a29.tar.gz glibc-069e52f8362adc26a6b7ad2b32664a68d0cc7a29.tar.xz glibc-069e52f8362adc26a6b7ad2b32664a68d0cc7a29.zip |
Use canonical FSF .texi files for LGPL and FDL texts.
Diffstat (limited to 'manual/Makefile')
-rw-r--r-- | manual/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/manual/Makefile b/manual/Makefile index b1f5fa73e5..46dd4304dc 100644 --- a/manual/Makefile +++ b/manual/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1992-1999,2000,2001,2002,2003,2004,2006 +# Copyright (C) 1992-1999,2000,2001,2002,2003,2004,2006,2011 # Free Software Foundation, Inc. # This file is part of the GNU C Library. @@ -59,11 +59,11 @@ chapters = $(addsuffix .texi, \ resource setjmp signal startup process job nss \ users sysinfo conf crypt debug) add-chapters = $(wildcard $(foreach d, $(add-ons), ../$d/$d.texi)) -appendices = lang.texi header.texi install.texi maint.texi contrib.texi \ - freemanuals.texi +appendices = lang.texi header.texi install.texi maint.texi contrib.texi +licenses = freemanuals.texi lgpl-2.1.texi fdl-1.1.texi -include texis -texis: texis.awk $(chapters) $(add-chapters) $(appendices) lesser.texi fdl.texi +texis: texis.awk $(chapters) $(add-chapters) $(appendices) $(licenses) $(AWK) -f $^ > $@.T mv -f $@.T $@ @@ -73,7 +73,9 @@ examples = $(filter-out $(foreach d, $(add-ons), ../$d/%.c.texi), \ # Kludge: implicit rule so Make knows the one command does it all. chapters.% top-menu.%: libc-texinfo.sh $(texis) Makefile - AWK=$(AWK) $(SHELL) $< '$(chapters)' '$(add-chapters)' '$(appendices)' + AWK=$(AWK) $(SHELL) $< '$(chapters)' \ + '$(add-chapters)' \ + '$(appendices) $(licenses)' libc.dvi libc.pdf libc.info: chapters.texi top-menu.texi dir-add.texi \ libm-err.texi |