gdb/
2003-08-08 H.J. Lu <hongjiu.lu@intel.com> * Makefile.in (FLAGS_TO_PASS): Add DESTDIR. (install-only): Support DESTDIR. (uninstall): Likewise. (install-gdbtk): Likewise. gdb/doc/ 2003-08-08 H.J. Lu <hongjiu.lu@intel.com> * Makefile.in (install-info): Support DESTDIR. (install-html): Likewise. gdb/gdbserver/ 2003-08-08 H.J. Lu <hongjiu.lu@intel.com> * Makefile.in (install-only): Create dest dir. Support DESTDIR. (uninstall): Support DESTDIR. mmalloc/ 2003-08-08 H.J. Lu <hongjiu.lu@intel.com> * Makefile.in (install-info): Create dest dir. Support DESTDIR. (install): Likewise.
This commit is contained in:
parent
c04898f807
commit
c938e9b01d
8 changed files with 43 additions and 15 deletions
|
@ -1,3 +1,8 @@
|
|||
2003-08-08 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* Makefile.in (install-info): Create dest dir. Support DESTDIR.
|
||||
(install): Likewise.
|
||||
|
||||
2002-11-28 Elena Zannoni <ezannoni@redhat.com>
|
||||
|
||||
* Makefile.in (install): Move install-info to here...
|
||||
|
|
|
@ -113,6 +113,7 @@ mmalloc.dvi: mmalloc.texi
|
|||
rm -f mmalloc.?? mmalloc.??s mmalloc.log mmalloc.aux mmalloc.toc
|
||||
|
||||
install-info: info
|
||||
$(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(infodir)
|
||||
@list='$(INFO_DEPS)'; \
|
||||
for file in $$list; do \
|
||||
if test -f $$file; then d=.; else d=$(srcdir); fi; \
|
||||
|
@ -156,9 +157,10 @@ check: test1.c
|
|||
# ./a.out
|
||||
|
||||
install: all install-info
|
||||
$(INSTALL_DATA) $(TARGETLIB) $(libdir)/$(TARGETLIB)n
|
||||
$(RANLIB) $(libdir)/$(TARGETLIB)n
|
||||
mv -f $(libdir)/$(TARGETLIB)n $(libdir)/$(TARGETLIB)
|
||||
$(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(libdir)
|
||||
$(INSTALL_DATA) $(TARGETLIB) $(DESTDIR)$(libdir)/$(TARGETLIB)n
|
||||
$(RANLIB) $(DESTDIR)$(libdir)/$(TARGETLIB)n
|
||||
mv -f $(DESTDIR)$(libdir)/$(TARGETLIB)n $(DESTDIR)$(libdir)/$(TARGETLIB)
|
||||
|
||||
uninstall: uninstall-info
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue