Changeset 3865 in orxonox.OLD for orxonox/branches/levelloader/src/subprojects
- Timestamp:
- Apr 18, 2005, 11:17:03 AM (20 years ago)
- Location:
- orxonox/branches/levelloader/src/subprojects
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/levelloader/src/subprojects/Makefile.in
r3746 r3865 1 # Makefile.in generated by automake 1.8. 2from Makefile.am.1 # Makefile.in generated by automake 1.8.5 from Makefile.am. 2 2 # @configure_input@ 3 3 … … 177 177 esac; \ 178 178 done; \ 179 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/subprojects/Makefile'; \179 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/subprojects/Makefile'; \ 180 180 cd $(top_srcdir) && \ 181 $(AUTOMAKE) -- gnusrc/subprojects/Makefile181 $(AUTOMAKE) --foreign src/subprojects/Makefile 182 182 .PRECIOUS: Makefile 183 183 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status … … 272 272 tags=; \ 273 273 here=`pwd`; \ 274 if ( etags--etags-include --version) >/dev/null 2>&1; then \274 if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ 275 275 include_option=--etags-include; \ 276 empty_fix=.; \ 276 277 else \ 277 278 include_option=--include; \ 279 empty_fix=; \ 278 280 fi; \ 279 281 list='$(SUBDIRS)'; for subdir in $$list; do \ 280 282 if test "$$subdir" = .; then :; else \ 281 test -f $$subdir/TAGS &&\283 test ! -f $$subdir/TAGS || \ 282 284 tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ 283 285 fi; \ … … 289 291 $(AWK) ' { files[$$0] = 1; } \ 290 292 END { for (i in files) print i; }'`; \ 291 test -z "$(ETAGS_ARGS)$$tags$$unique" \ 292 || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ 293 $$tags $$unique 293 if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ 294 test -n "$$unique" || unique=$$empty_fix; \ 295 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ 296 $$tags $$unique; \ 297 fi 294 298 ctags: CTAGS 295 299 CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ -
orxonox/branches/levelloader/src/subprojects/testmain/Makefile.in
r3746 r3865 1 # Makefile.in generated by automake 1.8. 2from Makefile.am.1 # Makefile.in generated by automake 1.8.5 from Makefile.am. 2 2 # @configure_input@ 3 3 … … 50 50 CONFIG_HEADER = $(top_builddir)/config.h 51 51 CONFIG_CLEAN_FILES = 52 am__installdirs = $(DESTDIR)$(bindir)52 am__installdirs = "$(DESTDIR)$(bindir)" 53 53 binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) 54 54 PROGRAMS = $(bin_PROGRAMS) … … 197 197 esac; \ 198 198 done; \ 199 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/subprojects/testmain/Makefile'; \199 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/subprojects/testmain/Makefile'; \ 200 200 cd $(top_srcdir) && \ 201 $(AUTOMAKE) -- gnusrc/subprojects/testmain/Makefile201 $(AUTOMAKE) --foreign src/subprojects/testmain/Makefile 202 202 .PRECIOUS: Makefile 203 203 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status … … 219 219 install-binPROGRAMS: $(bin_PROGRAMS) 220 220 @$(NORMAL_INSTALL) 221 $(mkdir_p) $(DESTDIR)$(bindir)221 test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)" 222 222 @list='$(bin_PROGRAMS)'; for p in $$list; do \ 223 223 p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ … … 225 225 ; then \ 226 226 f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ 227 echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f"; \228 $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f|| exit 1; \227 echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ 228 $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ 229 229 else :; fi; \ 230 230 done … … 234 234 @list='$(bin_PROGRAMS)'; for p in $$list; do \ 235 235 f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ 236 echo " rm -f $(DESTDIR)$(bindir)/$$f"; \237 rm -f $(DESTDIR)$(bindir)/$$f; \236 echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \ 237 rm -f "$(DESTDIR)$(bindir)/$$f"; \ 238 238 done 239 239 … … 289 289 $(AWK) ' { files[$$0] = 1; } \ 290 290 END { for (i in files) print i; }'`; \ 291 test -z "$(ETAGS_ARGS)$$tags$$unique" \ 292 || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ 293 $$tags $$unique 291 if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ 292 test -n "$$unique" || unique=$$empty_fix; \ 293 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ 294 $$tags $$unique; \ 295 fi 294 296 ctags: CTAGS 295 297 CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ … … 346 348 all-am: Makefile $(PROGRAMS) $(HEADERS) 347 349 installdirs: 348 $(mkdir_p) $(DESTDIR)$(bindir) 350 for dir in "$(DESTDIR)$(bindir)"; do \ 351 test -z "$$dir" || $(mkdir_p) "$$dir"; \ 352 done 349 353 install: install-am 350 354 install-exec: install-exec-am
Note: See TracChangeset
for help on using the changeset viewer.