Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile « gmake « samples - github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: af4ce8ddb743dc8c9d96340d650ff3c16c9f4803 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# GNU Makefile autogenerated by Premake
# Usage: make [ CONFIG=config_name ]
# Where {config_name} is one of:
#   Debug, Release

ifndef CONFIG
  CONFIG=Debug
endif
export CONFIG

.PHONY: all clean CppExe

all: CppExe

Makefile: premake.lua CppExe/premake.lua
	@echo ==== Regenerating Makefiles ====
	@premake --file $^ --target gnu

CppExe:
	@echo ==== Building CppExe ====
	@$(MAKE) --no-print-directory -C CppExe

clean:
	@$(MAKE) --no-print-directory -C CppExe clean