1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-05 09:18:06 +03:00
samba-mirror/buildtools/scripts/Makefile.waf

58 lines
731 B
Makefile
Raw Normal View History

# simple makefile wrapper to run waf
WAF=WAF_MAKE=1 BUILDTOOLS/bin/waf
all:
$(WAF) build
install:
$(WAF) install
uninstall:
$(WAF) uninstall
2010-03-15 10:23:48 +03:00
test:
$(WAF) test
2010-03-15 10:23:48 +03:00
quicktest:
$(WAF) test --quick
2010-03-15 10:23:48 +03:00
2010-04-08 01:57:23 +04:00
dist:
$(WAF) dist
2010-05-05 16:09:37 +04:00
distcheck:
$(WAF) distcheck
clean:
$(WAF) clean
distclean:
$(WAF) distclean
2010-03-18 07:07:10 +03:00
reconfigure: configure
$(WAF) reconfigure
2010-03-18 07:07:10 +03:00
# some compatibility make targets
everything: all
testsuite: all
check: test
torture: all
# this should do an install as well, once install is finished
installcheck: test
etags:
$(WAF) etags
ctags:
$(WAF) ctags
configure: autogen-waf.sh BUILDTOOLS/scripts/configure.waf
./autogen-waf.sh
Makefile: autogen-waf.sh configure BUILDTOOLS/scripts/Makefile.waf
./autogen-waf.sh