Changeset 893


Ignore:
Timestamp:
Sep 3, 2011, 9:47:52 AM (12 years ago)
Author:
sam
Message:

test: add an empty sandbox program and update .gitignore.

Location:
trunk
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/.gitignore

    r827 r893  
    55*.la
    66*.exe
     7*.elf
     8*.self
    79*.userprefs
    810*.usertasks
     
    5355monsterz/monsterz
    5456test/lol-test
     57test/lol-bench
    5558test/quad
     59test/sandbox
    5660tools/make-font
    5761# Our data
  • trunk/test/Makefile.am

    r889 r893  
    1111all-local: quad$(EXEEXT) lol-bench$(EXEEXT)
    1212        test x$(MAKE_FSELF) = xno || make_fself quad$(EXEEXT) quad.self
     13        test x$(MAKE_FSELF) = xno || make_fself sandbox$(EXEEXT) sandbox.self
    1314        test x$(MAKE_FSELF) = xno || make_fself lol-bench$(EXEEXT) lol-bench.self
    1415
    15 CLEANFILES = quad.self lol-bench.self
     16CLEANFILES = quad.self sandbox lol-bench.self
    1617
    17 noinst_PROGRAMS = quad lol-bench $(cppunit_tests)
     18noinst_PROGRAMS = quad sandbox lol-bench $(cppunit_tests)
    1819
    1920TESTS = $(cppunit_tests)
     
    3637quad_DEPENDENCIES = $(top_builddir)/src/liblol.a
    3738
     39sandbox_SOURCES = debug/sandbox.cpp
     40sandbox_CPPFLAGS = @LOL_CFLAGS@ @PIPI_CFLAGS@
     41sandbox_LDFLAGS = $(top_builddir)/src/liblol.a @LOL_LIBS@ @PIPI_LIBS@
     42sandbox_DEPENDENCIES = $(top_builddir)/src/liblol.a
     43
Note: See TracChangeset for help on using the changeset viewer.