diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..805c2b8 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +CC := gcc +CFLAGS := + +mycfetch: + $(CC) main.c info.c -o mycfetch $(CFLAGS) + +install: mycfetch + cp mycfetch /usr/bin/mycfetch diff --git a/build.sh b/build.sh deleted file mode 100644 index c8112de..0000000 --- a/build.sh +++ /dev/null @@ -1 +0,0 @@ -gcc main.c info.c -o mycoolneofetch \ No newline at end of file