mirror of
https://github.com/Mo3he/Axis_Cam_Tailscale.git
synced 2026-06-09 20:42:37 +00:00
3ed71ccae3
- Advertise routes (subnet router) support wired through run scripts and params - Settings UI tries param.cgi first, then falls back to an app-hosted endpoint exposed via manifest reverseProxy, so devices without param.cgi (recorder/NVR class) can load and save settings without a reinstall - Embedded GSocketService HTTP server in param_bridge serves the fallback - Adds gio-2.0 dependency; correct aarch64 tailscale binaries
15 lines
293 B
Makefile
15 lines
293 B
Makefile
PROG = Tailscale_VPN
|
|
SRCS = param_bridge.c
|
|
PKGS = axparameter glib-2.0 gio-2.0
|
|
CFLAGS += $(shell pkg-config --cflags $(PKGS))
|
|
LDADD = $(shell pkg-config --libs $(PKGS))
|
|
|
|
all: $(PROG)
|
|
chmod +x Tailscale_VPN_run
|
|
|
|
$(PROG): $(SRCS)
|
|
$(CC) $(CFLAGS) -o $@ $^ $(LDADD)
|
|
|
|
clean:
|
|
rm -f $(PROG)
|