From 8812faf218f8b6e9adbf3867de314932c5dde807 Mon Sep 17 00:00:00 2001 From: Chris Osborn Date: Mon, 3 Apr 2017 08:05:40 -0700 Subject: [PATCH] Move LDFLAGS to end. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 79aa1da..61185e7 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ $(SRCS): $(CC) $(CFLAGS) -c $*.c tcpser: $(OBJS) - $(CC) $(LDFLAGS) -o $@ $(OBJS) + $(CC) -o $@ $(OBJS) $(LDFLAGS) depend: $(SRCS) $(DEPEND) $(SRCS)