summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2022-03-26 07:56:22 +0100
committerxengineering <me@xengineering.eu>2022-03-26 07:56:22 +0100
commitb44e498555143bf0afcb96efcf5531cd14b28fcb (patch)
tree929b9801a675953af0eecfbf29d6f833d7f7f9b6 /Makefile
parenta8e5418e5e6532cdd27271fae32b44744f43e5c0 (diff)
downloadxbot-b44e498555143bf0afcb96efcf5531cd14b28fcb.tar
xbot-b44e498555143bf0afcb96efcf5531cd14b28fcb.tar.zst
xbot-b44e498555143bf0afcb96efcf5531cd14b28fcb.zip
Achieve compatibility with postmarketOS / Alpine Linux
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d6906b0..3315f2d 100644
--- a/Makefile
+++ b/Makefile
@@ -14,7 +14,7 @@ all: $(TARGET_EXEC)
$(TARGET_EXEC): build/xbot.o
mkdir -p build
- $(CC) $(LDFLAGS) -o $@ $<
+ $(CC) -o $@ $< $(LDFLAGS)
build/%.o: src/%.c
mkdir -p build