1
1
mirror of https://github.com/rui314/mold.git synced 2024-12-26 18:02:30 +03:00

Accept "tests" and "check" as aliases for "test"

This commit is contained in:
Rui Ueyama 2021-05-21 12:48:52 +09:00
parent 99abd52d6e
commit ef0ebc0e93

View File

@ -63,7 +63,7 @@ $(MIMALLOC_LIB):
(cd mimalloc/out/release; CFLAGS=-DMI_USE_ENVIRON=0 cmake ../..)
$(MAKE) -C mimalloc/out/release
test: all
test tests check: all
for i in test/*.sh; do $$i || exit 1; done
install: all
@ -85,4 +85,4 @@ uninstall:
clean:
rm -f *.o *~ mold mold-wrapper.so
.PHONY: all test clean
.PHONY: all test tests check clean