diff options
author | Runxi Yu <me@runxiyu.org> | 2025-04-03 16:36:07 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-04-03 16:47:01 +0800 |
commit | 348b145590b0b6ab32b04ca7e101d5abe0929ca7 (patch) | |
tree | 4ba16324d1b010d0f04f367a3f54c1c4aa7daee7 /Makefile | |
parent | Makefile: Add git2d to the daemon's dependencies (diff) | |
download | forge-348b145590b0b6ab32b04ca7e101d5abe0929ca7.tar.gz forge-348b145590b0b6ab32b04ca7e101d5abe0929ca7.tar.zst forge-348b145590b0b6ab32b04ca7e101d5abe0929ca7.zip |
Makefile: Put libraries after the source
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,7 +22,7 @@ utils/colb: hookc/hookc: git2d/git2d: git2d/main.o git2d/bare.o git2d/utf8.c - $(CC) $(CFLAGS) `pkg-config --cflags --libs libgit2` -lpthread -o git2d/git2d $^ + $(CC) $(CFLAGS) -o git2d/git2d $^ `pkg-config --cflags --libs libgit2` -lpthread version.go: printf 'package main\n\nconst VERSION = "%s"\n' `git describe --tags --always --dirty` > $@ |