diff options
author | xengineering <me@xengineering.eu> | 2022-03-26 07:56:22 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2022-03-26 07:56:22 +0100 |
commit | b44e498555143bf0afcb96efcf5531cd14b28fcb (patch) | |
tree | 929b9801a675953af0eecfbf29d6f833d7f7f9b6 /Makefile | |
parent | a8e5418e5e6532cdd27271fae32b44744f43e5c0 (diff) | |
download | xbot-b44e498555143bf0afcb96efcf5531cd14b28fcb.tar xbot-b44e498555143bf0afcb96efcf5531cd14b28fcb.tar.zst xbot-b44e498555143bf0afcb96efcf5531cd14b28fcb.zip |
Achieve compatibility with postmarketOS / Alpine Linux
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |