summaryrefslogtreecommitdiffstats
path: root/templates/native/AGLbuild
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2017-05-09 13:20:38 +0200
committerRomain Forlot <romain.forlot@iot.bzh>2017-05-09 13:20:38 +0200
commit9ea81dbd25d509cbe88de0702bed54020180f979 (patch)
treea0ee0bbdc777459723a2c1291b8b563a2938e2b5 /templates/native/AGLbuild
parent0a189f7f28b382e57b642932f820f5ee818aba9f (diff)
Update template with references.
Change-Id: Ic575adc4c8815f41a02c32d9835332cc2608d513 Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'templates/native/AGLbuild')
-rwxr-xr-xtemplates/native/AGLbuild14
1 files changed, 9 insertions, 5 deletions
diff --git a/templates/native/AGLbuild b/templates/native/AGLbuild
index ccbc28b..4cfd53a 100755
--- a/templates/native/AGLbuild
+++ b/templates/native/AGLbuild
@@ -27,15 +27,19 @@ clean:
@([ -d ${BUILD_DIR} ] && make -C ${BUILD_DIR} clean) || echo Nothing to clean
mrproper:
- rm -rf ${BUILD_DIR}
+ @rm -rf ${BUILD_DIR}
build: ${BUILD_DIR}/Makefile
- cmake --build ${BUILD_DIR} --target all
+ @cmake --build ${BUILD_DIR} --target all
package: config.xml.in icon.png.in build | $(PKG_FILELIST)
- mkdir -p ${BUILD_DIR}/$@/{bin,etc,lib,htdocs,data}
- cmake --build ${BUILD_DIR} --target widget
+ @mkdir -p ${BUILD_DIR}/$@/bin
+ @mkdir -p ${BUILD_DIR}/$@/etc
+ @mkdir -p ${BUILD_DIR}/$@/lib
+ @mkdir -p ${BUILD_DIR}/$@/htdocs
+ @mkdir -p ${BUILD_DIR}/$@/data
+ @cmake --build ${BUILD_DIR} --target widget
${BUILD_DIR}/Makefile:
@[ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR}
- @[ -f ${BUILD_DIR}/Makefile ] || (cd ${BUILD_DIR} && cmake ${CMAKE_OPTS} ..) \ No newline at end of file
+ @[ -f ${BUILD_DIR}/Makefile ] || (cd ${BUILD_DIR} && cmake ${CMAKE_OPTS} ..)