From: Eli Zaretskii Date: Mon, 3 Apr 2000 15:12:59 +0000 (+0000) Subject: * Makefile.in (copying.c): Depend on copying.txt, not COPYING. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bf1798eaab17fe7c82f6343a6dcaa10aae57692e;p=binutils-gdb.git * Makefile.in (copying.c): Depend on copying.txt, not COPYING. (copying.txt): New target, a link to COPYING. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 9ef0d076345..b5adb554022 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2000-04-03 Eli Zaretskii + + * Makefile.in (copying.c): Depend on copying.txt, not COPYING. + (copying.txt): New target, a link to COPYING. + Mon Apr 3 18:20:03 2000 Andrew Cagney * TODO: Update. diff --git a/gdb/Makefile.in b/gdb/Makefile.in index d036ce1d1f5..0fbab208996 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -942,9 +942,19 @@ doc/gdb.dvi: doc/gdb.info: cd doc; $(MAKE) gdb.info $(FLAGS_TO_PASS) +# When DJGPP Make runs on MS-DOS, it downcases all file names, so +# it doesn't find COPYING, and wants to make it... +copying.txt: + test -f copying.txt || \ + (test "$$LN_S" = "ln -s" && \ + ln -s $(srcdir)/COPYING copying.txt;) || \ + cp -p $(srcdir)/COPYING copying.txt 2>/dev/null || \ + ln $(srcdir)/COPYING copying.txt 2>/dev/null || \ + cp $(srcdir)/COPYING copying.txt + # Make copying.c from COPYING -copying.c: COPYING copying.awk - awk -f $(srcdir)/copying.awk < $(srcdir)/COPYING > copying.c +copying.c: copying.txt copying.awk + awk -f $(srcdir)/copying.awk < $(srcdir)/copying.txt > copying.c version.c: Makefile rm -f version.c