summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorLeah Neukirchen <leah@vuxu.org>2023-10-13 21:16:47 +0200
committerLeah Neukirchen <leah@vuxu.org>2023-10-13 21:16:47 +0200
commit6660e95842fb64a98601d835362da992ab890db0 (patch)
treeaa9b5130f2151c085f9186f32b58a8fa208de8f8 /Makefile
parent7cbacb585461c8a093f3a6c9e3135dcc1dafc01a (diff)
downloadmico-6660e95842fb64a98601d835362da992ab890db0.tar.gz
mico-6660e95842fb64a98601d835362da992ab890db0.tar.xz
mico-6660e95842fb64a98601d835362da992ab890db0.zip
add metra, a scraper
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index e80b676..2f8f289 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,12 @@
 CFLAGS=-g -O2 -Wall -Wno-switch -Wextra -Wwrite-strings
 LDLIBS=-lzip
 
-all: mico-store mico-dump
+all: mico-store mico-dump metra/metra
+
+metra/metra: metra/metra.go metra/go.mod
+	cd metra && go build -v
 
 clean: FRC
-	rm -f mico-store
+	rm -f mico-store mico-dump metra/metra
 
 FRC: