diff options
author | Omar Polo <op@omarpolo.com> | 2022-03-26 11:57:27 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2022-03-26 11:57:27 +0000 |
commit | 57d2fca4b460c3c6aceb3f3aa6cc97ece9316022 (patch) | |
tree | d9032ffcadb7568adc97ab43f8833cbbb464f537 /Makefile | |
parent | 3fdc457c8db0550a6143ab626bfefe3351ab0b93 (diff) |
add target `test' alias for `regress'
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2,7 +2,7 @@ # all. TESTS= -.PHONY: all static clean cleanall regress install +.PHONY: all static clean cleanall test regress install all: Makefile.local gmid gg @@ -30,6 +30,7 @@ clean: cleanall: clean ${MAKE} -C regress clean +test: regress regress: all ${MAKE} 'TESTS=${TESTS}' -C regress all |