2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-14 00:32:11 +00:00
Files
build/example/make/Jamroot
Vladimir Prus bc2225da16 Actually unbreak the 'make' test
[SVN r48388]
2008-08-25 19:05:39 +00:00

12 lines
224 B
Plaintext

import toolset : flags ;
path-constant HERE : . ;
make main.cpp : main_cpp.pro : @do-something ;
flags do-something PYTHON : <python.interpreter> ;
actions do-something
{
$(PYTHON:E=python) $(HERE)/foo.py $(>) $(<)
}