OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [gdb-5.3/] [utils/] [Makefile.tpl] - Diff between revs 1181 and 1765

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 1181 Rev 1765
[+ AutoGen5 template
[+ AutoGen5 template
# Makefile.tpl
# Makefile.tpl
# Run 'autogen Makefile.def' in the same directory to regenerate Makefile.in
# Run 'autogen Makefile.def' in the same directory to regenerate Makefile.in
#
#
# This file is mostly an ordinary Makefile.in.
# This file is mostly an ordinary Makefile.in.
# Certain repetitive sections are generated by autogen;
# Certain repetitive sections are generated by autogen;
# the parts with [+ and +] around them are the macros.
# the parts with [+ and +] around them are the macros.
#
#
# Use .in as the suffix for the generated file
# Use .in as the suffix for the generated file
in
in
# make sure we don't use csh:
# make sure we don't use csh:
(setenv "SHELL" "/bin/sh")
(setenv "SHELL" "/bin/sh")
+]
+]
#
#
# Makefile.tpl, Makefile.in, Makefile
# Makefile.tpl, Makefile.in, Makefile
#   Copyright 2002 Free Software Foundation
#   Copyright 2002 Free Software Foundation
#
#
# This file is part of GDB.
# This file is part of GDB.
#
#
# This file is free software; you can redistribute it and/or modify
# This file is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# (at your option) any later version.
#
#
# This program is distributed in the hope that it will be useful,
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# GNU General Public License for more details.
#
#
# You should have received a copy of the GNU General Public License
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
SHELL = /bin/sh
SHELL = /bin/sh
prefix = @prefix@
prefix = @prefix@
exec_prefix = @exec_prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
bindir = @bindir@
libdir = @libdir@
libdir = @libdir@
datadir = @datadir@
datadir = @datadir@
mandir = @mandir@
mandir = @mandir@
infodir = @infodir@
infodir = @infodir@
includedir = @includedir@
includedir = @includedir@
srcdir = @srcdir@
srcdir = @srcdir@
abs_srcdir = @abs_srcdir@
abs_srcdir = @abs_srcdir@
man1dir = $(mandir)/man1
man1dir = $(mandir)/man1
man2dir = $(mandir)/man2
man2dir = $(mandir)/man2
man3dir = $(mandir)/man3
man3dir = $(mandir)/man3
man4dir = $(mandir)/man4
man4dir = $(mandir)/man4
man5dir = $(mandir)/man5
man5dir = $(mandir)/man5
man6dir = $(mandir)/man6
man6dir = $(mandir)/man6
man7dir = $(mandir)/man7
man7dir = $(mandir)/man7
man8dir = $(mandir)/man8
man8dir = $(mandir)/man8
man9dir = $(mandir)/man9
man9dir = $(mandir)/man9
tooldir = $(exec_prefix)
tooldir = $(exec_prefix)
subconfigure_args = @subconfigure_args@
subconfigure_args = @subconfigure_args@
# Should it be INSTALL = @INSTALL@ -c ?
# Should it be INSTALL = @INSTALL@ -c ?
# The old makefile passed the -c argument.
# The old makefile passed the -c argument.
INSTALL = @INSTALL@
INSTALL = @INSTALL@
INSTALL_PROGRAM = $(INSTALL)
INSTALL_PROGRAM = $(INSTALL)
INSTALL_DATA = $(INSTALL)
INSTALL_DATA = $(INSTALL)
# public targets
# public targets
all: @all_subdirs@
all: @all_subdirs@
install: @install_subdirs@
install: @install_subdirs@
mostlyclean: @mostlyclean_subdirs@
mostlyclean: @mostlyclean_subdirs@
clean: @clean_subdirs@
clean: @clean_subdirs@
# These should always clean all sudirectories...
# These should always clean all sudirectories...
distclean: [+ FOR subdirs +]distclean-[+subdir+] [+ ENDFOR subdirs +]
distclean: [+ FOR subdirs +]distclean-[+subdir+] [+ ENDFOR subdirs +]
maintainer-clean: [+ FOR subdirs +]maintainer-clean-[+subdir+] [+ ENDFOR subdirs +]
maintainer-clean: [+ FOR subdirs +]maintainer-clean-[+subdir+] [+ ENDFOR subdirs +]
clean mostlyclean:
clean mostlyclean:
        -rm -f *~ core *.o a.out
        -rm -f *~ core *.o a.out
maintainer-clean distclean:
maintainer-clean distclean:
        -rm -f Makefile config.status config.log config.cache *~ core *.o a.out
        -rm -f Makefile config.status config.log config.cache *~ core *.o a.out
info:
info:
install-info:
install-info:
clean-info:
clean-info:
dvi:
dvi:
.PHONY: all install clean mostlyclean distclean maintainer-clean
.PHONY: all install clean mostlyclean distclean maintainer-clean
.PHONY: info install-info clean-info dvi
.PHONY: info install-info clean-info dvi
.NOEXPORT:
.NOEXPORT:
# Rules for regenerating this Makefile
# Rules for regenerating this Makefile
Makefile: $(srcdir)/Makefile.in config.status
Makefile: $(srcdir)/Makefile.in config.status
        ./config.status
        ./config.status
$(srcdir)/Makefile.in: $(srcdir)/Makefile.tpl $(srcdir)/Makefile.def
$(srcdir)/Makefile.in: $(srcdir)/Makefile.tpl $(srcdir)/Makefile.def
        cd $(srcdir) && autogen Makefile.def
        cd $(srcdir) && autogen Makefile.def
config.status: $(srcdir)/configure
config.status: $(srcdir)/configure
        ./config.status --recheck
        ./config.status --recheck
$(srcdir)/configure: $(srcdir)/configure.in
$(srcdir)/configure: $(srcdir)/configure.in
        cd $(srcdir) && autoconf
        cd $(srcdir) && autoconf
# Miscellaneous variable setting
# Miscellaneous variable setting
AR_FLAGS = qv
AR_FLAGS = qv
FLAGS_TO_PASS = \
FLAGS_TO_PASS = \
        "CC=$(CC)" \
        "CC=$(CC)" \
        "CFLAGS=$(CFLAGS)" \
        "CFLAGS=$(CFLAGS)" \
        "AR=$(AR)" \
        "AR=$(AR)" \
        "AR_FLAGS=$(AR_FLAGS)" \
        "AR_FLAGS=$(AR_FLAGS)" \
        "AS=$(AS)" \
        "AS=$(AS)" \
        "CROSS_CFLAGS=$(CROSS_CFLAGS)" \
        "CROSS_CFLAGS=$(CROSS_CFLAGS)" \
        "TARGET_CFLAGS=$(TARGET_CFLAGS)" \
        "TARGET_CFLAGS=$(TARGET_CFLAGS)" \
        "INCLUDES=$(INCLUDES)"
        "INCLUDES=$(INCLUDES)"
# Everything from here on down is generated by FOR loops in autogen.
# Everything from here on down is generated by FOR loops in autogen.
[+ FOR targets +]
[+ FOR targets +]
# Glue for [+target+].
# Glue for [+target+].
[+ FOR subdirs +]
[+ FOR subdirs +]
[+target+]-[+subdir+]: configure-[+subdir+]
[+target+]-[+subdir+]: configure-[+subdir+]
        [+makeline_flag+]cd [+subdir+] && $(MAKE) [+target_flags+] [+target+]
        [+makeline_flag+]cd [+subdir+] && $(MAKE) [+target_flags+] [+target+]
.PHONY: [+target+]-[+subdir+]
.PHONY: [+target+]-[+subdir+]
[+ ENDFOR subdirs +][+ ENDFOR targets +]
[+ ENDFOR subdirs +][+ ENDFOR targets +]
# Glue for configure.
# Glue for configure.
[+ FOR subdirs +]
[+ FOR subdirs +]
configure-[+subdir+]: [+subdir+]/Makefile
configure-[+subdir+]: [+subdir+]/Makefile
[+subdir+]/Makefile: config.status
[+subdir+]/Makefile: config.status
        test -d [+subdir+] || mkdir [+subdir+] ; \
        test -d [+subdir+] || mkdir [+subdir+] ; \
        cd [+subdir+] && $(abs_srcdir)/[+subdir+]/configure $(subconfigure_args)
        cd [+subdir+] && $(abs_srcdir)/[+subdir+]/configure $(subconfigure_args)
.PHONY: configure-[+subdir+]
.PHONY: configure-[+subdir+]
[+ ENDFOR subdirs +]
[+ ENDFOR subdirs +]
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.