Tracing, step 1.
[UnsignedByte.git] / makefile
blob8c43fe255dcfd0c9165f9bb8cb49b0a4ab89e663
1 .PHONY: clean All
3 All:
4 @echo ----------Building project:[ Resource ]----------
5 @cd "UnsignedByte/Resource" && "$(MAKE)" -f "Resource.mk" type=Debug
6 @echo ----------Building project:[ DAL - Debug ]----------
7 @cd "UnsignedByte/DAL" && "$(MAKE)" -f "DAL.mk" type=Debug
8 @echo ----------Building project:[ Core - Debug ]----------
9 @cd "UnsignedByte/Core" && "$(MAKE)" -f "Core.mk" type=Debug
10 clean:
11 @echo ----------Building project:[ Resource ]----------
12 @cd "UnsignedByte/Resource" && "$(MAKE)" -f "Resource.mk" type=Debug clean
13 @echo ----------Building project:[ DAL - Debug ]----------
14 @cd "UnsignedByte/DAL" && "$(MAKE)" -f "DAL.mk" type=Debug clean
15 @echo ----------Building project:[ Core - Debug ]----------
16 @cd "UnsignedByte/Core" && "$(MAKE)" -f "Core.mk" type=Debug clean