Changeset 3994 in orxonox.OLD for orxonox/branches/ll2trunktemp/src/subprojects
- Timestamp:
- Apr 27, 2005, 1:50:23 PM (20 years ago)
- Location:
- orxonox/branches/ll2trunktemp/src/subprojects
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/ll2trunktemp/src/subprojects/Makefile.in
r3940 r3994 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 … … 178 178 esac; \ 179 179 done; \ 180 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/subprojects/Makefile'; \180 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/subprojects/Makefile'; \ 181 181 cd $(top_srcdir) && \ 182 $(AUTOMAKE) -- gnusrc/subprojects/Makefile182 $(AUTOMAKE) --foreign src/subprojects/Makefile 183 183 .PRECIOUS: Makefile 184 184 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status … … 273 273 tags=; \ 274 274 here=`pwd`; \ 275 if ( etags--etags-include --version) >/dev/null 2>&1; then \275 if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ 276 276 include_option=--etags-include; \ 277 empty_fix=.; \ 277 278 else \ 278 279 include_option=--include; \ 280 empty_fix=; \ 279 281 fi; \ 280 282 list='$(SUBDIRS)'; for subdir in $$list; do \ 281 283 if test "$$subdir" = .; then :; else \ 282 test -f $$subdir/TAGS &&\284 test ! -f $$subdir/TAGS || \ 283 285 tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ 284 286 fi; \ … … 290 292 $(AWK) ' { files[$$0] = 1; } \ 291 293 END { for (i in files) print i; }'`; \ 292 test -z "$(ETAGS_ARGS)$$tags$$unique" \ 293 || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ 294 $$tags $$unique 294 if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ 295 test -n "$$unique" || unique=$$empty_fix; \ 296 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ 297 $$tags $$unique; \ 298 fi 295 299 ctags: CTAGS 296 300 CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ -
orxonox/branches/ll2trunktemp/src/subprojects/testmain/Makefile.in
r3940 r3994 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) … … 198 198 esac; \ 199 199 done; \ 200 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/subprojects/testmain/Makefile'; \200 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/subprojects/testmain/Makefile'; \ 201 201 cd $(top_srcdir) && \ 202 $(AUTOMAKE) -- gnusrc/subprojects/testmain/Makefile202 $(AUTOMAKE) --foreign src/subprojects/testmain/Makefile 203 203 .PRECIOUS: Makefile 204 204 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status … … 220 220 install-binPROGRAMS: $(bin_PROGRAMS) 221 221 @$(NORMAL_INSTALL) 222 $(mkdir_p) $(DESTDIR)$(bindir)222 test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)" 223 223 @list='$(bin_PROGRAMS)'; for p in $$list; do \ 224 224 p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ … … 226 226 ; then \ 227 227 f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ 228 echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f"; \229 $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f|| exit 1; \228 echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ 229 $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ 230 230 else :; fi; \ 231 231 done … … 235 235 @list='$(bin_PROGRAMS)'; for p in $$list; do \ 236 236 f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ 237 echo " rm -f $(DESTDIR)$(bindir)/$$f"; \238 rm -f $(DESTDIR)$(bindir)/$$f; \237 echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \ 238 rm -f "$(DESTDIR)$(bindir)/$$f"; \ 239 239 done 240 240 … … 290 290 $(AWK) ' { files[$$0] = 1; } \ 291 291 END { for (i in files) print i; }'`; \ 292 test -z "$(ETAGS_ARGS)$$tags$$unique" \ 293 || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ 294 $$tags $$unique 292 if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ 293 test -n "$$unique" || unique=$$empty_fix; \ 294 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ 295 $$tags $$unique; \ 296 fi 295 297 ctags: CTAGS 296 298 CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ … … 347 349 all-am: Makefile $(PROGRAMS) $(HEADERS) 348 350 installdirs: 349 $(mkdir_p) $(DESTDIR)$(bindir) 351 for dir in "$(DESTDIR)$(bindir)"; do \ 352 test -z "$$dir" || $(mkdir_p) "$$dir"; \ 353 done 350 354 install: install-am 351 355 install-exec: install-exec-am
Note: See TracChangeset
for help on using the changeset viewer.