summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index bdc9167..796dec7 100644
--- a/Makefile
+++ b/Makefile
@@ -2,13 +2,13 @@ CFLAGS += -Wall -Wextra -Wwrite-strings -std=c99 -D_BSD_SOURCE -D_DEFAULT_SOURCE
LDLIBS := -lev
-NET_OBJS := src/client.o src/server.o
-OBJS := src/udpastcp.o src/checksum.o $(NET_OBJS)
+NET_OBJS := src/checksum.o src/client.o src/server.o
+OBJS := src/udpastcp.o $(NET_OBJS)
udpastcp: $(OBJS)
$(LINK.c) $^ $(LOADLIBES) $(LDLIBS) -o $@
-# networking code needs aliasing to be efficient
+# networking code needs aliasing to work at all
$(NET_OBJS): CFLAGS+=-fno-strict-aliasing -Wno-sign-compare
clean: