diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -32,7 +32,7 @@ first: # Some make programs use the last target for the $@ default; put the other # targets separately to always let $@ expand to "first" by default. -all install uninstall tools config configure reconfig proto depend lint tags types test scripttests unittests testclean clean distclean: +all install uninstall tools config configure reconfig proto depend lint tags types test scripttests test_libvterm unittests testclean clean distclean: @if test ! -f src/auto/config.mk; then \ cp src/config.mk.dist src/auto/config.mk; \ fi @@ -40,6 +40,10 @@ all install uninstall tools config configure reconfig proto depend lint tags typ @echo "If there are problems, cd to the src directory and run make there" cd src && $(MAKE) $@ +test: all + cd src && $(MAKE) test + cd runtime/indent && $(MAKE) clean && $(MAKE) test + ######################################################################### # 2. Creating the various distribution files. |