diff options
| author | Josh Wainwright <josh.wainwright@ldra.com> | 2016-04-20 15:22:22 +0100 |
|---|---|---|
| committer | Josh Wainwright <josh.wainwright@ldra.com> | 2016-04-20 15:22:22 +0100 |
| commit | b8b85a7208bf68b6ce558329daea31672b9733db (patch) | |
| tree | 85d36e007e2e136ee7c20fbe0dbfaceac9d67e75 /lua/Makefile | |
| parent | e51d2aa5389e06e9d841a1fad3824cd4ffc7ca9d (diff) | |
| download | vis-b8b85a7208bf68b6ce558329daea31672b9733db.tar.gz vis-b8b85a7208bf68b6ce558329daea31672b9733db.tar.xz | |
Allow running individual tests from makefile
Diffstat (limited to 'lua/Makefile')
| -rw-r--r-- | lua/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lua/Makefile b/lua/Makefile index 3d750aa..13619b9 100644 --- a/lua/Makefile +++ b/lua/Makefile @@ -1,3 +1,5 @@ +.PHONY=all clean test + all: clean test clean: @@ -5,3 +7,6 @@ clean: test: @./test.sh + +%: %.in + @./test.sh $@ |
