-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bbb7bb8
commit faca135
Showing
6 changed files
with
409 additions
and
11 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
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,48 @@ | ||
# Alternative GNU Make workspace makefile autogenerated by Premake | ||
|
||
ifndef config | ||
config=debug | ||
endif | ||
|
||
ifndef verbose | ||
SILENT = @ | ||
endif | ||
|
||
ifeq ($(config),debug) | ||
bake_config = debug | ||
|
||
else ifeq ($(config),release) | ||
bake_config = release | ||
|
||
else | ||
$(error "invalid configuration $(config)") | ||
endif | ||
|
||
PROJECTS := bake | ||
|
||
.PHONY: all clean help $(PROJECTS) | ||
|
||
all: $(PROJECTS) | ||
|
||
bake: | ||
ifneq (,$(bake_config)) | ||
@echo "==== Building bake ($(bake_config)) ====" | ||
@${MAKE} --no-print-directory -C . -f bake.make config=$(bake_config) | ||
endif | ||
|
||
clean: | ||
@${MAKE} --no-print-directory -C . -f bake.make clean | ||
|
||
help: | ||
@echo "Usage: make [config=name] [target]" | ||
@echo "" | ||
@echo "CONFIGURATIONS:" | ||
@echo " debug" | ||
@echo " release" | ||
@echo "" | ||
@echo "TARGETS:" | ||
@echo " all (default)" | ||
@echo " clean" | ||
@echo " bake" | ||
@echo "" | ||
@echo "For more information, see https://github.com/premake/premake-core/wiki" |
Oops, something went wrong.