separate the testing step from the build step

There are circumstances where you just want to repeat the build
without running the tests.  keeping the "test" target distinct from
the "all" target makes it possible to do that cleanly.
This commit is contained in:
Daniel Kahn Gillmor
2013-06-11 10:23:05 -04:00
parent c818885733
commit 02a0a3b231

View File

@@ -2,7 +2,6 @@ INSTALL ?= install
all:
$(MAKE) -C src all
$(MAKE) -C test all
test:
$(MAKE) -C test all