Skip to content

Commit

Permalink
Fix compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
NSExceptional committed Apr 23, 2020
1 parent f76fd9b commit e5cff12
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export TARGET = iphone:9.0:9.0
export TARGET = iphone:latest:9.0
include $(THEOS)/makefiles/common.mk

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

# Gather FLEX sources
SOURCES = $(shell find $(FLEX_ROOT)/Classes -name '*.m')
SOURCES = $(shell find $(FLEX_ROOT)/Classes -name '*.c')
SOURCES += $(shell find $(FLEX_ROOT)/Classes -name '*.m')
SOURCES += $(shell find $(FLEX_ROOT)/Classes -name '*.mm')
# Gather FLEX headers for search paths
_IMPORTS = $(shell /bin/ls -d $(FLEX_ROOT)/Classes/*/)
_IMPORTS += $(shell /bin/ls -d $(FLEX_ROOT)/Classes/*/*/)
Expand Down

0 comments on commit e5cff12

Please sign in to comment.