aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-12-12 11:06:55 -0300
committerEuAndreh <eu@euandre.org>2024-12-12 11:06:55 -0300
commitf66b73fdb63b0642865d97a239a39403721f2e21 (patch)
treecc1b2142c841e0fe9774b821de38ffa8c977af8a /Makefile
parenttests/unit/: Actually run existing tests (diff)
downloadcotia-f66b73fdb63b0642865d97a239a39403721f2e21.tar.gz
cotia-f66b73fdb63b0642865d97a239a39403721f2e21.tar.xz
Makefile: Uncomment dependency on build files
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 59e9f25..dfc9f2f 100644
--- a/Makefile
+++ b/Makefile
@@ -135,8 +135,8 @@ side-assets = \
all: $(derived-assets)
-#$(existing.a) $(xmains.a): Makefile deps.mk
-#$(libs.a): Makefile deps.mk
+$(existing.a) $(xmains.a): Makefile deps.mk
+$(libs.a): Makefile deps.mk
$(libs.a): src/$(NAME).go src/version.go
@@ -163,7 +163,7 @@ $(fuzz-targets/lib.a):
go tool compile $(GOCFLAGS) -o $@ -p $(NAME) -d=libfuzzer \
$*.go src/$(NAME).go src/version.go
-src/version.go: #Makefile
+src/version.go: Makefile
echo 'package $(NAME); const Version = "$(VERSION)"' > $@
$(NAME).bin: src/main.bin