diff options
author | David Wührer <def@gmx.at> | 2024-01-17 13:51:37 +0100 |
---|---|---|
committer | David Wührer <def@gmx.at> | 2024-01-17 13:51:37 +0100 |
commit | 24591c7f65b91f33d66d3ccc243c848dbe0f1572 (patch) | |
tree | 31d3e9d538bf6bcd746276fa5fbbc84a06cbbafe | |
parent | faf540b146dc7c4a48480673af9a8de56df2e34f (diff) |
-rw-r--r-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6e9bc13 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +#!/usr/bin/make -f + +CFLAGS = -Oz $(LFLAGS) +LFLAGS = -Bstatic -s + +piechart: piechart.c + $(CC) $(CFLAGS) -lm $< -o $@ |