Replace build.sh with Makefile

windows
Plaza521 2023-06-10 21:11:58 +03:00
parent 095c752d99
commit f23dc457e1
2 changed files with 8 additions and 1 deletions

8
Makefile Normal file
View File

@ -0,0 +1,8 @@
CC := gcc
CFLAGS :=
mycfetch:
$(CC) main.c info.c -o mycfetch $(CFLAGS)
install: mycfetch
cp mycfetch /usr/bin/mycfetch

View File

@ -1 +0,0 @@
gcc main.c info.c -o mycoolneofetch