diff options
| author | Anser <rostgans@tutamail.com> | 2026-07-04 18:42:09 +0200 |
|---|---|---|
| committer | Anser <rostgans@tutamail.com> | 2026-07-31 11:11:38 +0200 |
| commit | 980dc94ba445d815856f5795fe2ab4ebb04b865c (patch) | |
| tree | dc0bf636c8c48b5d475b3c678a57a91fbb6cdd91 /Makefile | |
init commit
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 11 |
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 |
