blob: f1a86e2a8549d4920acee51ba40174eca3ebfac9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# Simplified root Makefile for glamac
# Delegates all build operations to the modular build system in build/
# Default target delegates to modular build system
%:
@$(MAKE) -C build $@
# Special case for targets that need to be run from root directory
.PHONY: help
help:
@$(MAKE) -C build help
|