summaryrefslogtreecommitdiff
path: root/loragw_spi_stress/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'loragw_spi_stress/Makefile')
-rw-r--r--loragw_spi_stress/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/loragw_spi_stress/Makefile b/loragw_spi_stress/Makefile
index b19eee9..4006dc3 100644
--- a/loragw_spi_stress/Makefile
+++ b/loragw_spi_stress/Makefile
@@ -3,7 +3,7 @@
APP_NAME=loragw_spi_stress
### constant symbols
-
+CROSS_COMPILE=
CC=gcc
CFLAGS=-O2 -Wall -Wextra -Iinc
C99FLAGS=-O2 -Wall -Wextra -std=c99 -Iinc
@@ -29,7 +29,7 @@ clean:
### main program compilation and assembly
obj/$(APP_NAME).o: src/$(APP_NAME).c
- $(CC) -c $(C99FLAGS) -o obj/$(APP_NAME).o $(LGW_INC) src/$(APP_NAME).c $(FLAG_AUX)
+ $(CROSS_COMPILE)$(CC) -c $(C99FLAGS) -o obj/$(APP_NAME).o $(LGW_INC) src/$(APP_NAME).c $(FLAG_AUX)
$(APP_NAME): $(LGW_PATH)/libloragw.a obj/$(APP_NAME).o
- $(CC) -o $(APP_NAME) obj/$(APP_NAME).o -L$(LGW_PATH) $(LGW_LNK)
+ $(CROSS_COMPILE)$(CC) -o $(APP_NAME) obj/$(APP_NAME).o -L$(LGW_PATH) $(LGW_LNK)