mirror of
https://git.planet-casio.com/Lephenixnoir/fxsdk.git
synced 2024-12-28 04:23: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
|
||||
|
||||
# Source files
|
||||
src := $(wildcard src/**/*.c)
|
||||
assets-fx := $(wildcard assets-fx/**/*)
|
||||
assets-cg := $(wildcard assets-cg/**/*)
|
||||
src := $(shell find src -name '*.c')
|
||||
assets-fx := $(shell find assets-fx/*/)
|
||||
assets-cg := $(shell find assets-cg/*/)
|
||||
|
||||
# Object files
|
||||
obj-fx := $(src:%.c=build-fx/%.o) $(assets-fx:assets-fx/%=build-fx/assets/%.o)
|
||||
|
|
Loading…
Reference in a new issue