From a5dfbe9dcc41beee521546d2788a5ce57359151e Mon Sep 17 00:00:00 2001 From: cbdev Date: Sun, 14 Jan 2024 12:54:48 +0100 Subject: Fix makefile ordering --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 19bf31a..6bc8b10 100644 --- a/makefile +++ b/makefile @@ -13,7 +13,7 @@ plugins: websocksy: LDFLAGS += -Wl,-export-dynamic websocksy: websocksy.c websocksy.h $(OBJECTS) plugins - $(CC) $(CFLAGS) $(LDFLAGS) $(LDLIBS) $< -o $@ $(OBJECTS) + $(CC) $(CFLAGS) $(LDFLAGS) $< -o $@ $(OBJECTS) $(LDLIBS) clean: $(RM) $(OBJECTS) -- cgit v1.2.3