-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmakefile
More file actions
24 lines (23 loc) · 1.36 KB
/
makefile
File metadata and controls
24 lines (23 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
.PHONY: clean All
All:
@echo ----------Building project:[ Resource - Debug ]----------
@cd "UnsignedByte/Resource" && "$(MAKE)" -f "Resource.mk" type=Debug
@echo ----------Building project:[ Generator - Debug ]----------
@cd "UnsignedByte/Generator" && "$(MAKE)" -f "Generator.mk" type=Debug
@echo ----------Building project:[ DAL - Debug ]----------
@cd "UnsignedByte/DAL" && "$(MAKE)" -f "DAL.mk" type=Debug
@echo ----------Building project:[ Initializer - Debug ]----------
@cd "UnsignedByte/Initializer" && "$(MAKE)" -f "Initializer.mk" type=Debug
@echo ----------Building project:[ Core - Debug ]----------
@cd "UnsignedByte/Core" && "$(MAKE)" -f "Core.mk" type=Debug
clean:
@echo ----------Building project:[ Resource - Debug ]----------
@cd "UnsignedByte/Resource" && "$(MAKE)" -f "Resource.mk" type=Debug clean
@echo ----------Building project:[ Generator - Debug ]----------
@cd "UnsignedByte/Generator" && "$(MAKE)" -f "Generator.mk" type=Debug clean
@echo ----------Building project:[ DAL - Debug ]----------
@cd "UnsignedByte/DAL" && "$(MAKE)" -f "DAL.mk" type=Debug clean
@echo ----------Building project:[ Initializer - Debug ]----------
@cd "UnsignedByte/Initializer" && "$(MAKE)" -f "Initializer.mk" type=Debug clean
@echo ----------Building project:[ Core - Debug ]----------
@cd "UnsignedByte/Core" && "$(MAKE)" -f "Core.mk" type=Debug clean