blob: 572db07178a8cf8fd0d155283eb4be609fff380d (
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
25
26
27
28
29
30
31
32
|
# Main orchestrator Makefile for GlaMaC
# This file coordinates the modular build system
# Include common configuration first
include common.mk
# Include build modules
include native.mk
include dependencies.mk
# Help system
help:
@echo "GlaMaC Build System"
@echo ""
@echo "Build targets:"
@echo " all - Build for current platform"
@echo " glamac - Build main application only"
@echo " glautils - Build utilities only"
@echo " clean - Clean build files"
@echo " rebuild - Clean and rebuild"
@echo ""
@echo "Dependencies:"
@echo " deps - Install SDL3 dependencies"
@echo " clean-deps - Remove SDL3 dependencies"
@echo ""
@echo "Glass catalog conversion:"
@echo " convert-catalogs - Convert Excel files to JSON"
@echo ""
@echo "Quick start:"
@echo " make deps && make all # Install dependencies and build"
.PHONY: help
|