diff options
author | Josh Blum <josh@joshknows.com> | 2011-07-29 11:13:24 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-07-29 11:13:24 -0700 |
commit | fc349d30507620baca935e75e68a9554b40d427c (patch) | |
tree | bcd54363591ebe9897bc5f1f97c299b2f516b4fc /images/Makefile | |
parent | 49330ed43307bc2fae1dacb0b12ec3186bca8249 (diff) | |
download | uhd-fc349d30507620baca935e75e68a9554b40d427c.tar.gz uhd-fc349d30507620baca935e75e68a9554b40d427c.tar.bz2 uhd-fc349d30507620baca935e75e68a9554b40d427c.zip |
uhd: added print constraints to makefile, and used directory variablerelease_003_002_001
Diffstat (limited to 'images/Makefile')
-rw-r--r-- | images/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/images/Makefile b/images/Makefile index f0a656d0d..b8361addc 100644 --- a/images/Makefile +++ b/images/Makefile @@ -259,12 +259,13 @@ endif ######################################################################## images: $(IMAGES_LIST) find $(BUILT_IMAGES_DIR) -type f | xargs chmod -x + find $(TOP_FPGA_DIR) -name "*.twr" | xargs grep constraint | grep met package: - mkdir -p build - cd build && cmake -DUHD_RELEASE_MODE=OFF .. - cd build && cmake -DCPACK_GENERATOR=TGZ .. && make package - cd build && cmake -DCPACK_GENERATOR=ZIP .. && make package + mkdir -p $(CMAKE_BUILD_DIR) + cd $(CMAKE_BUILD_DIR) && cmake -DUHD_RELEASE_MODE=OFF .. + cd $(CMAKE_BUILD_DIR) && cmake -DCPACK_GENERATOR=TGZ .. && make package + cd $(CMAKE_BUILD_DIR) && cmake -DCPACK_GENERATOR=ZIP .. && make package clean: $(RM) -rf $(BUILT_IMAGES_DIR) |