mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-30 03:50:46 +00:00
(FILE_AUTHORS): New variable.
(AUTHORS): New target. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@306 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d9e81649f6
commit
91d400d3f8
1 changed files with 18 additions and 0 deletions
18
Makefile.in
18
Makefile.in
|
@ -95,6 +95,13 @@ INCLUDEFLAGS='$(INCLUDEFLAGS)' DEFS='$(DEFS)'
|
||||||
.c.o:
|
.c.o:
|
||||||
$(CC) -c $(ALL_CPPFLAGS) $(DEFS) $(ALL_CFLAGS) $<
|
$(CC) -c $(ALL_CPPFLAGS) $(DEFS) $(ALL_CFLAGS) $<
|
||||||
|
|
||||||
|
# Grep for these names to build the legally-required "AUTHORS" file.
|
||||||
|
FILE_AUTHORS = \
|
||||||
|
"R. Andrew McCallum" \
|
||||||
|
"Kresten Krab Thorup" \
|
||||||
|
"Adam Fedor" \
|
||||||
|
"Mark Lakata"
|
||||||
|
|
||||||
GNU_MFILES = \
|
GNU_MFILES = \
|
||||||
Array.m \
|
Array.m \
|
||||||
Bag.m \
|
Bag.m \
|
||||||
|
@ -509,6 +516,17 @@ NEWS: news.texi version.texi
|
||||||
ADVERTISEMENT: advertisement.texi version.texi
|
ADVERTISEMENT: advertisement.texi version.texi
|
||||||
$(MAKEINFO) -o ADVERTISEMENT -D ADVERTISEMENT_ONLY \
|
$(MAKEINFO) -o ADVERTISEMENT -D ADVERTISEMENT_ONLY \
|
||||||
--no-header --no-split $(srcdir)/advertisement.texi
|
--no-header --no-split $(srcdir)/advertisement.texi
|
||||||
|
AUTHORS: Makefile.in
|
||||||
|
rm -f AUTHORS
|
||||||
|
@echo Finding file authors...
|
||||||
|
@echo 'For the legal record, here is a list of who wrote what:'>AUTHORS
|
||||||
|
@for a in $(FILE_AUTHORS) \
|
||||||
|
; do \
|
||||||
|
echo "\n\n$${a}:\n" >>AUTHORS; \
|
||||||
|
egrep -l "((Written by)|(Author)).*$${a}" \
|
||||||
|
$(DIST_FILES) >>AUTHORS; \
|
||||||
|
done
|
||||||
|
|
||||||
Makefile: Makefile.in config.status
|
Makefile: Makefile.in config.status
|
||||||
$(SHELL) config.status
|
$(SHELL) config.status
|
||||||
config.status: configure
|
config.status: configure
|
||||||
|
|
Loading…
Reference in a new issue