- added jstest and evtest for convenience

This commit is contained in:
Ingo Ruhnke 2008-04-15 04:50:03 +02:00
parent 984a1194d7
commit bdeb5bb387
2 changed files with 20 additions and 0 deletions

13
tools/README Normal file
View file

@ -0,0 +1,13 @@
[[ Tools ]]
===========
This directory contains jstest and evtest. You can sometimes find
these tools in your distribution, but especially evtest can sometimes
be hard to come by, so I have included them here for convenience.
You can compile them via:
% scons
# EOF #

7
tools/SConstruct Normal file
View file

@ -0,0 +1,7 @@
# -*- python -*-
env = Environment(CPPFLAGS=["-g", "-O2", "-Wall"])
env.Program("jstest", ["jstest.c"])
env.Program("evtest", ["evtest.c"])
# EOF #