mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-23 06:35:33 -07:00
use single quotes in find command in makefile
This commit is contained in:
parent
8534f25602
commit
29e0a4b5b1
1 changed files with 6 additions and 6 deletions
12
soh/Makefile
12
soh/Makefile
|
@ -87,14 +87,14 @@ TEXTURE_FILES_OUT := $(foreach f,$(TEXTURE_FILES_PNG:.png=.inc.c),build/$f) \
|
||||||
$(foreach f,$(TEXTURE_FILES_JPG:.jpg=.jpg.inc.c),build/$f) \
|
$(foreach f,$(TEXTURE_FILES_JPG:.jpg=.jpg.inc.c),build/$f) \
|
||||||
|
|
||||||
CXX_FILES := \
|
CXX_FILES := \
|
||||||
$(shell find soh -type f -name *.cpp)
|
$(shell find soh -type f -name '*.cpp')
|
||||||
|
|
||||||
C_FILES := \
|
C_FILES := \
|
||||||
$(shell find soh -type f -name *.c) \
|
$(shell find soh -type f -name '*.c') \
|
||||||
$(shell find src/boot -type f -name *.c) \
|
$(shell find src/boot -type f -name '*.c') \
|
||||||
$(shell find src/buffers -type f -name *.c) \
|
$(shell find src/buffers -type f -name '*.c') \
|
||||||
$(shell find src/code -type f -name *.c) \
|
$(shell find src/code -type f -name '*.c') \
|
||||||
$(shell find src/overlays -type f -name *.c) \
|
$(shell find src/overlays -type f -name '*.c') \
|
||||||
src/libultra/gu/coss.c \
|
src/libultra/gu/coss.c \
|
||||||
src/libultra/gu/guLookAt.c \
|
src/libultra/gu/guLookAt.c \
|
||||||
src/libultra/gu/guLookAtHilite.c \
|
src/libultra/gu/guLookAtHilite.c \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue