forked from nakidai/mycfetch
1
0
Fork 0
hiscfetch/Makefile

16 lines
202 B
Makefile
Raw Normal View History

2023-11-12 14:54:45 +03:00
CC := cc
2023-06-10 21:11:58 +03:00
CFLAGS :=
2023-11-16 08:33:07 +03:00
all: hiscfetch
2023-11-12 14:54:45 +03:00
2023-11-16 17:26:13 +03:00
hiscfetch: main.c config.h
2023-11-16 08:33:07 +03:00
$(CC) main.c -o hiscfetch $(CFLAGS)
2023-06-10 21:11:58 +03:00
2023-11-16 17:26:13 +03:00
install: hiscfetch
2023-11-16 08:33:07 +03:00
cp hiscfetch /usr/bin/hiscfetch
2023-10-21 22:06:33 +03:00
clean:
2023-11-16 08:33:07 +03:00
rm hiscfetch
2023-11-12 14:54:45 +03:00
.PHONY: all install clean