21 lines
256 B
Makefile
21 lines
256 B
Makefile
# Makefile wrapper for waf
|
|
|
|
all:
|
|
./waf
|
|
|
|
# free free to change this part to suit your requirements
|
|
configure:
|
|
./waf configure --enable-examples --enable-tests
|
|
|
|
build:
|
|
./waf build
|
|
|
|
install:
|
|
./waf install
|
|
|
|
clean:
|
|
./waf clean
|
|
|
|
distclean:
|
|
./waf distclean
|