39 lines
1.4 KiB
Makefile
39 lines
1.4 KiB
Makefile
######################################################################
|
|
# User configuration
|
|
######################################################################
|
|
# Path to nodemcu-uploader (https://github.com/kmpm/nodemcu-uploader)
|
|
NODEMCU-UPLOADER=nodemcu-uploader/nodemcu-uploader.py
|
|
# Serial port
|
|
PORT=/dev/ttyUSB0
|
|
SPEED=9600
|
|
|
|
######################################################################
|
|
# End of user config
|
|
######################################################################
|
|
HTTP_FILES := $(wildcard http/*)
|
|
LUA_FILES := $(wildcard *.lua)
|
|
|
|
# Print usage
|
|
usage:
|
|
@echo "make upload FILE:=<file> to upload a specific file (i.e make upload FILE:=init.lua)"
|
|
@echo "make upload_http to upload files to be served"
|
|
@echo "make upload_server to upload the server code and init.lua"
|
|
@echo "make upload_all to upload all"
|
|
@echo $(TEST)
|
|
|
|
# Upload one files only
|
|
upload:
|
|
@$(NODEMCU-UPLOADER) -b $(SPEED) -p $(PORT) upload $(FILE)
|
|
|
|
# Upload HTTP files only
|
|
upload_http: $(HTTP_FILES)
|
|
@$(NODEMCU-UPLOADER) -b $(SPEED) -p $(PORT) upload $(foreach f, $^, $(f))
|
|
|
|
# Upload httpserver lua files (init and server module)
|
|
upload_server: $(LUA_FILES)
|
|
@$(NODEMCU-UPLOADER) -b $(SPEED) -p $(PORT) upload $(foreach f, $^, $(f))
|
|
|
|
# Upload all
|
|
upload_all: $(LUA_FILES) $(HTTP_FILES)
|
|
@$(NODEMCU-UPLOADER) -b $(SPEED) -p $(PORT) upload $(foreach f, $^, $(f))
|
|
|