diff options
author | Leah Neukirchen <leah@vuxu.org> | 2023-10-15 18:39:18 +0200 |
---|---|---|
committer | Leah Neukirchen <leah@vuxu.org> | 2023-10-15 18:39:18 +0200 |
commit | 9ed51426baac47f3fe4b45cc7a018b9f6eeff2dd (patch) | |
tree | 9b2cd8a30e2ce69f32e50aeb559c2ffdb6f00cc2 /Makefile | |
parent | 54ab34df86362785200e69d39f3b1fb5ee6cdce3 (diff) | |
download | mico-9ed51426baac47f3fe4b45cc7a018b9f6eeff2dd.tar.gz mico-9ed51426baac47f3fe4b45cc7a018b9f6eeff2dd.tar.xz mico-9ed51426baac47f3fe4b45cc7a018b9f6eeff2dd.zip |
add mico-sort
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
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: |