-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor main CMakeLists.txt. Generate manpages when pandoc is presen…
…t in Debug builds. Add top level Makefile
- Loading branch information
Jerry Jacobs
committed
Sep 15, 2016
1 parent
c3f6fd0
commit 1ade678
Showing
6 changed files
with
456 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
## | ||
# This Makefile is used to drive building of Debug and Release | ||
# targets of CMake | ||
## | ||
MAKEFLAGS += -s | ||
|
||
all: debug | ||
ci: lint debug release test | ||
|
||
help: | ||
@echo " release: Run a release build" | ||
@echo " debug: Run a debug build" | ||
@echo " lint: Lint check all source-code" | ||
@echo " test: Build and run tests" | ||
@echo " clean: Clean all build output" | ||
@echo "rebuild_cache: Rebuild all CMake caches" | ||
|
||
rebuild_cache: build/Debug build/Release | ||
@$(MAKE) -C build/Debug rebuild_cache | ||
@$(MAKE) -C build/Release rebuild_cache | ||
|
||
debug: build/Debug | ||
@echo "[DEBUG]" | ||
@$(MAKE) -C build/Debug | ||
|
||
release: build/Release | ||
@echo "[RELEASE]" | ||
@$(MAKE) -C build/Release | ||
|
||
test: build/Debug | ||
@$(MAKE) -C build/Debug test | ||
|
||
build/Debug: | ||
@mkdir -p $@ | ||
@cd $@ && cmake -DCMAKE_BUILD_TYPE=Debug ../../ | ||
|
||
build/Release: | ||
@mkdir -p $@ | ||
@cd $@ && cmake -Wno-dev -DCMAKE_BUILD_TYPE=Release ../../ | ||
|
||
clean: | ||
@echo "[CLEAN]" | ||
@rm -Rf build | ||
|
||
.PHONY: clean |
Oops, something went wrong.