Files
MP1R-Rando-CodeEdits/Makefile
T

16 lines
454 B
Makefile
Raw Permalink Normal View History

2022-11-21 21:18:55 -08:00
LOGGER_IP ?= "10.0.0.224" # put log server IP in string
FTP_IP ?= 10.0.0.225 # put console IP here
2022-10-12 19:23:58 -07:00
.PHONY: all clean
all:
2022-11-21 21:18:55 -08:00
cmake --toolchain=cmake/toolchain.cmake -DLOGGER_IP=$(LOGGER_IP) -S . -B build && $(MAKE) -C build subsdk9_meta
send:
cmake --toolchain=cmake/toolchain.cmake -DFTP_IP=$(FTP_IP) -DLOGGER_IP=$(LOGGER_IP) -S . -B build && $(MAKE) -C build subsdk9_meta
2022-10-12 19:23:58 -07:00
clean:
rm -r build || true
2022-10-17 09:38:15 -06:00
log: all
python3.8 scripts/tcpServer.py 0.0.0.0