Printing what tool is being build in the Makefile.
This commit is contained in:
parent
db7409465f
commit
47483c0233
|
@ -33,6 +33,7 @@ build: FORCE
|
|||
*) cmakeArgs="";; \
|
||||
esac; \
|
||||
for tool in $(tools); do \
|
||||
echo "** Building tool $${tool}"; \
|
||||
mkdir -p build.dir/$$tool; \
|
||||
cd build.dir/$$tool; \
|
||||
cmake -D CMAKE_BUILD_TYPE:STRING=RELEASE \
|
||||
|
@ -55,6 +56,7 @@ install: FORCE
|
|||
*) commonCMakeArgs="";; \
|
||||
esac; \
|
||||
for tool in $(tools); do \
|
||||
echo "** Installing tool $${tool}"; \
|
||||
cd build.dir/$$tool; \
|
||||
makeArgs=""; \
|
||||
cmakeArgs="$$commonCMakeArgs -D BUILD_DOC:STRING=OFF"; \
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
coriolis2 (1.0.1898-1) unstable; urgency=low
|
||||
coriolis2 (1.0.1899-1) unstable; urgency=low
|
||||
|
||||
* Initial release. Closes: #00001
|
||||
|
||||
|
|
Loading…
Reference in New Issue