mirror of
https://git.planet-casio.com/Lephenixnoir/fxsdk.git
synced 2024-12-28 20:43:37 +01:00
fxsdk: fix the source selection wildcard
Turns out make doesn't have /**/. Whatever.
This commit is contained in:
parent
c11003eead
commit
d022755c2a
1 changed files with 3 additions and 3 deletions
|
@ -38,9 +38,9 @@ target-fx := $(filename).g1a
|
||||||
target-cg := $(filename).g3a
|
target-cg := $(filename).g3a
|
||||||
|
|
||||||
# Source files
|
# Source files
|
||||||
src := $(wildcard src/**/*.c)
|
src := $(shell find src -name '*.c')
|
||||||
assets-fx := $(wildcard assets-fx/**/*)
|
assets-fx := $(shell find assets-fx/*/)
|
||||||
assets-cg := $(wildcard assets-cg/**/*)
|
assets-cg := $(shell find assets-cg/*/)
|
||||||
|
|
||||||
# Object files
|
# Object files
|
||||||
obj-fx := $(src:%.c=build-fx/%.o) $(assets-fx:assets-fx/%=build-fx/assets/%.o)
|
obj-fx := $(src:%.c=build-fx/%.o) $(assets-fx:assets-fx/%=build-fx/assets/%.o)
|
||||||
|
|
Loading…
Reference in a new issue