summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index fde12d0..c73b121 100644
--- a/Makefile
+++ b/Makefile
@@ -10,10 +10,10 @@ SRC_OBJS := $(addprefix src/,debug/local-play.o lib.o encode.o)
VPATH := debug
%.o: %.c %.h
- $(CC) -c $(CFLAGS) $(LIBS) $< -o $@
+ $(CC) -c $< $(CFLAGS) $(LIBS) -o $@
$(SERVER_NAME): src/main.c $(SRC_OBJS)
- $(CC) $(CFLAGS) $(LIBS) $^ -o $@
+ $(CC) $^ $(CFLAGS) $(LIBS) -o $@
all: sst-server