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

16 lines
202 B
Makefile

CC := cc
CFLAGS :=
all: hiscfetch
hiscfetch: main.c config.h
$(CC) main.c -o hiscfetch $(CFLAGS)
install: hiscfetch
cp hiscfetch /usr/bin/hiscfetch
clean:
rm hiscfetch
.PHONY: all install clean