aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 18ef85f..341c757 100644
--- a/Makefile
+++ b/Makefile
@@ -22,7 +22,7 @@ OBJS = basis.o \
all: $(TARGET)
$(TARGET): $(OBJS)
- $(CC) ${LDFLAGS} -o $@ $(OBJS)
+ $(CC) -o $@ $(OBJS) ${LDFLAGS}
%.o: %.c
$(CC) $(CFLAGS) -MMD -MF $(@:.o=.d) -MT $@ -c -o $@ $<