File tree 3 files changed +24
-7
lines changed
3 files changed +24
-7
lines changed Original file line number Diff line number Diff line change 1
1
#
2
- # This Make file is called from the core Makefile hierarchy with is a hierarchical
3
- # make wwhich uses parent callbacks to implement inheritance. However is luac_cross
4
- # build stands outside this and uses the host toolchain to implement a separate
2
+ # This Make file is called from the core Makefile hierarchy which is a hierarchical
3
+ # make which uses parent callbacks to implement inheritance. However if luac_cross
4
+ # build stands outside this it uses the host toolchain to implement a separate
5
5
# host build of the luac.cross image.
6
6
#
7
7
.NOTPARALLEL :
@@ -51,7 +51,12 @@ CC := $(WRAPCC) gcc
51
51
52
52
ECHO := echo
53
53
54
+ BUILD_TYPE := $(shell $(CC ) $(EXTRA_CCFLAGS ) -E -dM - <../../../app/include/user_config.h | grep LUA_NUMBER_INTEGRAL | wc -l)
55
+ ifeq ($(BUILD_TYPE ) ,0)
54
56
IMAGE := ../../../luac.cross
57
+ else
58
+ IMAGE := ../../../luac.cross.int
59
+ endif
55
60
56
61
.PHONY : test clean all
57
62
65
70
@echo SRC: $(SRC )
66
71
@echo OBJS: $(OBJS )
67
72
@echo DEPS: $(DEPS )
73
+ @echo IMAGE: $(IMAGE )
68
74
69
75
clean :
70
76
$(RM ) -r $(ODIR )
Original file line number Diff line number Diff line change
1
+ # Ignore everything
2
+ *
3
+ # But not this file itself.
4
+ ! .gitignore
Original file line number Diff line number Diff line change 2
2
# Options
3
3
#
4
4
5
- FSSOURCE ?= ../local/fs/
6
- LUASOURCE ?= ../local/lua/
5
+ FSSOURCE ?= ../local/fs
6
+ LUASOURCE ?= ../local/lua
7
7
FLASHSIZE ?= 4mb 32mb 8mb
8
8
FLASH_SW = -S
9
9
SUBDIRS =
@@ -14,7 +14,7 @@ OBJDUMP = $(or $(shell which objdump),xtensa-lx106-elf-objdump)
14
14
# Get the files to pack into the spiffs image
15
15
#
16
16
17
- SPIFFSFILES ?= $(patsubst $(FSSOURCE ) % ,% ,$(shell find $(FSSOURCE ) -name '* ' '!' -name .gitignore ) )
17
+ SPIFFSFILES ?= $(patsubst $(FSSOURCE ) / % ,% ,$(shell find $(FSSOURCE ) / -name '* ' '!' -name .gitignore ) )
18
18
19
19
# ################################################################
20
20
# Get the filesize of /bin/0x10000.bin and SPIFFS sizing
36
36
37
37
LFSSOURCES := $(wildcard $(LUASOURCE ) /* .lua)
38
38
39
+ BUILD_TYPE := $(shell $(CC ) $(EXTRA_CCFLAGS ) -E -dM - <../app/include/user_config.h | grep LUA_NUMBER_INTEGRAL | wc -l)
40
+ ifeq ($(BUILD_TYPE ) ,0)
41
+ LUAC_CROSS := ../luac.cross
42
+ else
43
+ LUAC_CROSS := ../luac.cross.int
44
+ endif
45
+
39
46
# ############################################################
40
47
# Rules base
41
48
#
@@ -72,7 +79,7 @@ spiffsscript: remove-image LFSimage spiffsimg/spiffsimg
72
79
73
80
ifneq ($(LFSSOURCES ) ,)
74
81
LFSimage : $(LFSSOURCES )
75
- ../luac.cross -f -o $(FSSOURCE ) flash.img $(LFSSOURCES )
82
+ $( LUAC_CROSS ) -f -o $(FSSOURCE ) flash.img $(LFSSOURCES )
76
83
else
77
84
LFSimage :
78
85
rm -f $(FSSOURCE ) flash.img
You can’t perform that action at this time.
0 commit comments