We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f76fd9b commit e5cff12Copy full SHA for e5cff12
Makefile
@@ -1,4 +1,4 @@
1
-export TARGET = iphone:9.0:9.0
+export TARGET = iphone:latest:9.0
2
include $(THEOS)/makefiles/common.mk
3
4
# FULL PATH of the FLEX repo on your own machine
@@ -8,7 +8,9 @@ FLEX_ROOT = /Users/tanner/Repos/FLEX
8
dtoim = $(foreach d,$(1),-I$(d))
9
10
# Gather FLEX sources
11
-SOURCES = $(shell find $(FLEX_ROOT)/Classes -name '*.m')
+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')
14
# Gather FLEX headers for search paths
15
_IMPORTS = $(shell /bin/ls -d $(FLEX_ROOT)/Classes/*/)
16
_IMPORTS += $(shell /bin/ls -d $(FLEX_ROOT)/Classes/*/*/)
0 commit comments