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/5a0e99d72e525fd37c599ae5435f74d7458176f1/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)