Skip to content

Commit e5cff12

Browse files
committed
Fix compile errors
1 parent f76fd9b commit e5cff12

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export TARGET = iphone:9.0:9.0
1+
export TARGET = iphone:latest:9.0
22
include $(THEOS)/makefiles/common.mk
33

44
# FULL PATH of the FLEX repo on your own machine
@@ -8,7 +8,9 @@ FLEX_ROOT = /Users/tanner/Repos/FLEX
88
dtoim = $(foreach d,$(1),-I$(d))
99

1010
# Gather FLEX sources
11-
SOURCES = $(shell find $(FLEX_ROOT)/Classes -name '*.m')
11+
SOURCES = $(shell find $(FLEX_ROOT)/Classes -name '*.c')
12+
SOURCES += $(shell find $(FLEX_ROOT)/Classes -name '*.m')
13+
SOURCES += $(shell find $(FLEX_ROOT)/Classes -name '*.mm')
1214
# Gather FLEX headers for search paths
1315
_IMPORTS = $(shell /bin/ls -d $(FLEX_ROOT)/Classes/*/)
1416
_IMPORTS += $(shell /bin/ls -d $(FLEX_ROOT)/Classes/*/*/)

0 commit comments

Comments
 (0)