Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/esp-link/blame/commit/942624e3633b2d575f4d4a7fea163bcba55ad03e/mkespfsimage/Makefile You should set ROOT_URL correctly, otherwise the web may not work correctly.
esp-link/mkespfsimage/Makefile

10 lines
160 B

CFLAGS=-I../lib/heatshrink -std=gnu99
OBJS=main.o heatshrink_encoder.o
TARGET=mkespfsimage
$(TARGET): $(OBJS)
$(CC) -o $@ $^
clean:
rm -f $(TARGET) $(OBJS)