diff options
author | Leah Neukirchen <leah@vuxu.org> | 2023-10-13 15:51:22 +0200 |
---|---|---|
committer | Leah Neukirchen <leah@vuxu.org> | 2023-10-13 15:51:22 +0200 |
commit | 084f5b70a41049da9d3a1d60e3c527ee4e4ba75c (patch) | |
tree | 88f12d2e20db1e1608b0e371c9d466b5ce5d5c29 /Makefile | |
download | mico-084f5b70a41049da9d3a1d60e3c527ee4e4ba75c.tar.gz mico-084f5b70a41049da9d3a1d60e3c527ee4e4ba75c.tar.xz mico-084f5b70a41049da9d3a1d60e3c527ee4e4ba75c.zip |
initial commit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4c07d17 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +CFLAGS=-g -O2 -Wall -Wno-switch -Wextra -Wwrite-strings +LDLIBS=-lzip + +all: mico-store + +clean: FRC + rm -f mico-store + +FRC: |