1
Fork 0
This repository has been archived on 2021-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
UOC_PP20211_PR/Makefile
2021-10-19 20:04:13 +02:00

12 lines
484 B
Makefile

.PHONY: clean All
All:
@echo "----------Building project:[ UOCContacts - Debug ]----------"
@cd "UOCContacts" && "$(MAKE)" -f "UOCContacts.mk"
@echo "----------Building project:[ UOC20211 - Debug ]----------"
@"$(MAKE)" -f "UOC20211.mk"
clean:
@echo "----------Cleaning project:[ UOCContacts - Debug ]----------"
@cd "UOCContacts" && "$(MAKE)" -f "UOCContacts.mk" clean
@echo "----------Cleaning project:[ UOC20211 - Debug ]----------"
@"$(MAKE)" -f "UOC20211.mk" clean