aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAnser <rostgans@tutamail.com>2026-07-04 18:42:09 +0200
committerAnser <rostgans@tutamail.com>2026-07-31 11:11:38 +0200
commit980dc94ba445d815856f5795fe2ab4ebb04b865c (patch)
treedc0bf636c8c48b5d475b3c678a57a91fbb6cdd91 /Makefile
init commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..ef4a208
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+CC = gcc
+CFLAGS = -Wall -Wextra -Werror
+
+all: cfetch
+
+cfetch:
+ $(CC) $(CFLAGS) -o cfetch src/cfetch.c
+ @echo "Finished install of cfetch!"
+
+clean:
+ rm -f cfetch