diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-10-21 03:41:44 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-10-21 03:41:44 -0400 |
commit | b79b3a4be4d18a551831a680fbf73c6af169e0d9 (patch) | |
tree | e2e412c8c567543ad2919bf3c658212660bea0fc /libsandbox | |
parent | build: flatten build a bit to avoid (most) recursive make (diff) | |
download | sandbox-b79b3a4be4d18a551831a680fbf73c6af169e0d9.tar.gz sandbox-b79b3a4be4d18a551831a680fbf73c6af169e0d9.tar.bz2 sandbox-b79b3a4be4d18a551831a680fbf73c6af169e0d9.zip |
tests: add a convenience build target
This makes it easy to quickly compile all the tools without actually
running the testsuite.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'libsandbox')
-rw-r--r-- | libsandbox/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsandbox/Makefile b/libsandbox/Makefile index ab08445..2db82ff 100644 --- a/libsandbox/Makefile +++ b/libsandbox/Makefile @@ -1,4 +1,4 @@ # Helper for developers. -all libsandbox: libsandbox/libsandbox.la ; +all libsandbox libsandbox.la: libsandbox/libsandbox.la ; clean: ; rm -f *.o *.l[ao] .libs/* %: ; $(MAKE) -C .. $@ |