Changeset 1760
- Timestamp:
- Aug 16, 2012, 9:11:00 AM (8 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/Makefile.am
r1754 r1760 7 7 ./benchsuite$(EXEEXT) 8 8 9 all-local: $( noinst_PROGRAMS)10 test x$(MAKE_FSELF) = xno || make_fself quad$(EXEEXT) quad.self11 test x$(MAKE_FSELF) = xno || make_fself benchsuite$(EXEEXT) benchsuite.self12 test x$(MAKE_FSELF) = xno || make_fself testsuite$(EXEEXT) testsuite.self9 all-local: $(PROGRAMS) $(noinst_PROGRAMS) 10 for x in $(^:%$(EXEEXT)=%); do \ 11 test x$(MAKE_FSELF) = xno || make_fself $${x}$(EXEEXT) $${x}.self; \ 12 done 13 13 14 14 CLEANFILES = $(noinst_PROGRAMS:%$(EXEEXT)=%.self) \ -
trunk/test/Physics/Src/EasyConstraint.cpp
r1755 r1760 1 2 #if defined HAVE_CONFIG_H 3 # include "config.h" 4 #endif 5 1 6 #include "../Include/LolBtPhysicsIntegration.h" 2 7 #include "../Include/LolPhysics.h" -
trunk/test/math/Makefile.am
r1129 r1760 2 2 AM_CPPFLAGS = -I$(top_srcdir)/src 3 3 4 all-local: $( noinst_PROGRAMS)5 test x$(MAKE_FSELF) = xno || make_fself pi$(EXEEXT) pi.self6 test x$(MAKE_FSELF) = xno || make_fself poly$(EXEEXT) poly.self7 test x$(MAKE_FSELF) = xno || make_fself remez$(EXEEXT) remez.self4 all-local: $(PROGRAMS) $(noinst_PROGRAMS) 5 for x in $(^:%$(EXEEXT)=%); do \ 6 test x$(MAKE_FSELF) = xno || make_fself $${x}$(EXEEXT) $${x}.self; \ 7 done 8 8 9 9 EXTRA_DIST = NEWS.txt lolremez.sln remez.vcxproj remez.vcxproj.filters -
trunk/tutorial/Makefile.am
r1598 r1760 2 2 AM_CPPFLAGS = -I$(top_srcdir)/src 3 3 4 all-local: $( noinst_PROGRAMS)5 for x in $( noinst_PROGRAMS:%$(EXEEXT)=%); do \4 all-local: $(PROGRAMS) $(noinst_PROGRAMS) 5 for x in $(^:%$(EXEEXT)=%); do \ 6 6 test x$(MAKE_FSELF) = xno || make_fself $${x}$(EXEEXT) $${x}.self; \ 7 7 done
Note: See TracChangeset
for help on using the changeset viewer.