summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2f8f289..6abbfbf 100644
--- a/Makefile
+++ b/Makefile
@@ -1,12 +1,14 @@
 CFLAGS=-g -O2 -Wall -Wno-switch -Wextra -Wwrite-strings
 LDLIBS=-lzip
 
-all: mico-store mico-dump metra/metra
+ALL=mico-dump mico-sort mico-store metra/metra
+
+all: $(ALL)
 
 metra/metra: metra/metra.go metra/go.mod
 	cd metra && go build -v
 
 clean: FRC
-	rm -f mico-store mico-dump metra/metra
+	rm -f $(ALL)
 
 FRC: