about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index cb04172..ddd9aaa 100644
--- a/Makefile
+++ b/Makefile
@@ -3,8 +3,8 @@ include config.mk
 
 SRC += $(shell find src/ -type f -name '*.c')
 PROTO = $(shell find src/ -type f -name '*.proto')
-OBJ = $(SRC:%=$(BUILD_DIR)/%.o)
-OBJ += $(PROTO:%.proto=$(BUILD_DIR)/%.pb.c.o)
+OBJ = $(PROTO:%.proto=$(BUILD_DIR)/%.pb.c.o)
+OBJ += $(SRC:%=$(BUILD_DIR)/%.o)
 H = include/libumumble.h
 
 .PHONY: all static shared clean install-static install-shared install