mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-05-30 15:35:07 +02:00
11 lines
227 B
Makefile
11 lines
227 B
Makefile
## Temporary things there
|
|
|
|
# C source file template:
|
|
# $1 module name
|
|
# $2 file base name
|
|
define rule-c-source
|
|
build/$1_$2.c.o: src/$1/$2.c
|
|
$(cc) $(cflags) -c $$< -o $$@
|
|
endef
|
|
|
|
$(eval $(call rule-c-source,display,area))
|