diff options
| -rw-r--r-- | Makefile | 11 | ||||
| -rw-r--r-- | README.md | 8 | ||||
| -rw-r--r-- | src/cfetch.c | 3 |
3 files changed, 22 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 diff --git a/README.md b/README.md new file mode 100644 index 0000000..12aa395 --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +# Idee +- fastfetch / commiefetch in C +- with emphasis on commiefetch, i want communism stuff but in C ! + +# Reference +- [Commiefetch](https://github.com/amalxloop/commiefetch) +- [Fastfetch](https://github.com/fastfetch-cli/fastfetch) + - Which is in C, so i can copie stuff ? diff --git a/src/cfetch.c b/src/cfetch.c new file mode 100644 index 0000000..9b6bdc2 --- /dev/null +++ b/src/cfetch.c @@ -0,0 +1,3 @@ +int main(void) { + return 0; +} |
