fix: makefile : use find instead of wildcard
to access to sub sub folder
This commit is contained in:
parent
60baa3ec46
commit
4e1fd187bc
4
Makefile
4
Makefile
@ -12,8 +12,8 @@ LD := $(CC)
|
||||
LDFLAGS := -T boot/linker.ld -ffreestanding -O2 -nostdlib
|
||||
LIBS := ./libbozo/build/libbozo.a -lgcc
|
||||
|
||||
SSRC := $(wildcard $(SOURCEDIR)/*.s)
|
||||
CSRC := $(wildcard $(SOURCEDIR)/*.c)
|
||||
SSRC := $(shell find $(SOURCEDIR) -name '*.s')
|
||||
CSRC := $(shell find $(SOURCEDIR) -name '*.c')
|
||||
OBJ := $(patsubst $(SOURCEDIR)/%.c,$(OBJECTDIR)/%.o,$(CSRC))\
|
||||
$(patsubst $(SOURCEDIR)/%.s,$(OBJECTDIR)/%.o,$(SSRC))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user