Browse Source

test: replace lol-bench with lol-bench$(EXEEXT) in the Makefile to allow

"make bench" to work when cross-compiling for Windows.
legacy
Sam Hocevar sam 13 years ago
parent
commit
148f6838e9
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      test/Makefile.am

+ 2
- 2
test/Makefile.am View File

@@ -5,8 +5,8 @@ if USE_CPPUNIT
cppunit_tests = lol-test
endif

bench: lol-bench
./lol-bench
bench: lol-bench$(EXEEXT)
./lol-bench$(EXEEXT)

all-local: quad$(EXEEXT) lol-bench$(EXEEXT)
test x$(MAKE_FSELF) = xno || make_fself quad$(EXEEXT) quad.self


Loading…
Cancel
Save