Changeset f724a870 in rtems
- Timestamp:
- 08/30/99 16:25:54 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 260b0c2
- Parents:
- 473741b
- Files:
-
- 5 deleted
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
c/configure
r473741b rf724a870 465 465 # A filename unique to this package, relative to the directory that 466 466 # configure is in, which we can look for to find out if srcdir is correct. 467 ac_unique_file= README467 ac_unique_file=src 468 468 469 469 # Find the source files, if location was not specified. -
c/configure.in
r473741b rf724a870 4 4 5 5 AC_PREREQ(2.13) 6 AC_INIT( README)6 AC_INIT(src) 7 7 RTEMS_TOP(..) 8 8 AC_CONFIG_AUX_DIR(..) -
c/src/configure
r473741b rf724a870 457 457 # A filename unique to this package, relative to the directory that 458 458 # configure is in, which we can look for to find out if srcdir is correct. 459 ac_unique_file= README459 ac_unique_file=exec 460 460 461 461 # Find the source files, if location was not specified. -
c/src/configure.in
r473741b rf724a870 4 4 5 5 AC_PREREQ(2.13) 6 AC_INIT( README)6 AC_INIT(exec) 7 7 RTEMS_TOP(../..) 8 8 AC_CONFIG_AUX_DIR(../..) -
c/src/make/Makefile.am
r473741b rf724a870 42 42 endif 43 43 44 SUBDIRS = compilers custom Templates44 SUBDIRS = compilers custom 45 45 46 46 include $(top_srcdir)/../../../automake/subdirs.am -
c/src/make/Makefile.in
r473741b rf724a870 153 153 154 154 155 SUBDIRS = compilers custom Templates155 SUBDIRS = compilers custom 156 156 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 157 157 mkinstalldirs = $(SHELL) $(top_srcdir)/../../../mkinstalldirs -
c/src/make/configure
r473741b rf724a870 3142 3142 target.cfg 3143 3143 bsp.cfg 3144 Templates/Makefile3145 3144 custom/Makefile 3146 3145 custom/default.cfg … … 3311 3310 target.cfg 3312 3311 bsp.cfg 3313 Templates/Makefile3314 3312 custom/Makefile 3315 3313 custom/default.cfg -
c/src/make/configure.in
r473741b rf724a870 126 126 target.cfg 127 127 bsp.cfg 128 Templates/Makefile129 128 custom/Makefile 130 129 custom/default.cfg -
configure
r473741b rf724a870 480 480 # A filename unique to this package, relative to the directory that 481 481 # configure is in, which we can look for to find out if srcdir is correct. 482 ac_unique_file= README482 ac_unique_file=c 483 483 484 484 # Find the source files, if location was not specified. -
configure.in
r473741b rf724a870 5 5 6 6 AC_PREREQ(2.13) 7 AC_INIT( README)7 AC_INIT(c) 8 8 RTEMS_TOP(.) 9 9 -
make/Templates/Makefile.am
r473741b rf724a870 5 5 AUTOMAKE_OPTIONS = foreign 1.4 6 6 7 EXTRA_DIST = \ 7 rtems_makedir=$(prefix)/make 8 rtems_make_Templatesdir=$(rtems_makedir)/Templates 9 10 rtems_make_Templates_DATA = \ 8 11 Makefile.dir \ 9 12 Makefile.leaf \ -
make/Templates/Makefile.in
r473741b rf724a870 88 88 AUTOMAKE_OPTIONS = foreign 1.4 89 89 90 EXTRA_DIST = Makefile.dir Makefile.leaf Makefile.lib 90 rtems_makedir = $(prefix)/make 91 rtems_make_Templatesdir = $(rtems_makedir)/Templates 92 93 rtems_make_Templates_DATA = Makefile.dir Makefile.leaf Makefile.lib 91 94 92 95 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs 93 96 CONFIG_CLEAN_FILES = 97 DATA = $(rtems_make_Templates_DATA) 98 94 99 DIST_COMMON = Makefile.am Makefile.in 95 100 … … 108 113 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status 109 114 115 116 install-rtems_make_TemplatesDATA: $(rtems_make_Templates_DATA) 117 @$(NORMAL_INSTALL) 118 $(mkinstalldirs) $(DESTDIR)$(rtems_make_Templatesdir) 119 @list='$(rtems_make_Templates_DATA)'; for p in $$list; do \ 120 if test -f $(srcdir)/$$p; then \ 121 echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(rtems_make_Templatesdir)/$$p"; \ 122 $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(rtems_make_Templatesdir)/$$p; \ 123 else if test -f $$p; then \ 124 echo " $(INSTALL_DATA) $$p $(DESTDIR)$(rtems_make_Templatesdir)/$$p"; \ 125 $(INSTALL_DATA) $$p $(DESTDIR)$(rtems_make_Templatesdir)/$$p; \ 126 fi; fi; \ 127 done 128 129 uninstall-rtems_make_TemplatesDATA: 130 @$(NORMAL_UNINSTALL) 131 list='$(rtems_make_Templates_DATA)'; for p in $$list; do \ 132 rm -f $(DESTDIR)$(rtems_make_Templatesdir)/$$p; \ 133 done 110 134 tags: TAGS 111 135 TAGS: … … 143 167 install-exec: install-exec-am 144 168 145 install-data-am: 169 install-data-am: install-rtems_make_TemplatesDATA 146 170 install-data: install-data-am 147 171 … … 149 173 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am 150 174 install: install-am 151 uninstall-am: 175 uninstall-am: uninstall-rtems_make_TemplatesDATA 152 176 uninstall: uninstall-am 153 all-am: Makefile 177 all-am: Makefile $(DATA) 154 178 all-redirect: all-am 155 179 install-strip: 156 180 $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install 157 181 installdirs: 182 $(mkinstalldirs) $(DESTDIR)$(rtems_make_Templatesdir) 158 183 159 184 … … 185 210 maintainer-clean: maintainer-clean-am 186 211 187 .PHONY: tags distdir info-am info dvi-am dvi check check-am \ 188 installcheck-am installcheck install-exec-am install-exec \ 189 install-data-am install-data install-am install uninstall-am uninstall \ 190 all-redirect all-am all installdirs mostlyclean-generic \ 191 distclean-generic clean-generic maintainer-clean-generic clean \ 192 mostlyclean distclean maintainer-clean 212 .PHONY: uninstall-rtems_make_TemplatesDATA \ 213 install-rtems_make_TemplatesDATA tags distdir info-am info dvi-am dvi \ 214 check check-am installcheck-am installcheck install-exec-am \ 215 install-exec install-data-am install-data install-am install \ 216 uninstall-am uninstall all-redirect all-am all installdirs \ 217 mostlyclean-generic distclean-generic clean-generic \ 218 maintainer-clean-generic clean mostlyclean distclean maintainer-clean 193 219 194 220 -
tools/build/configure
r473741b rf724a870 457 457 # A filename unique to this package, relative to the directory that 458 458 # configure is in, which we can look for to find out if srcdir is correct. 459 ac_unique_file= README459 ac_unique_file=install-if-change.in 460 460 461 461 # Find the source files, if location was not specified. -
tools/build/configure.in
r473741b rf724a870 4 4 5 5 AC_PREREQ(2.13) 6 AC_INIT( README)6 AC_INIT(install-if-change.in) 7 7 AC_CONFIG_AUX_DIR(../..) 8 8 RTEMS_TOP(../..)
Note: See TracChangeset
for help on using the changeset viewer.