You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
213 B
Makefile

gaycat: gaycat.c
$(CC) -O2 -o gaycat gaycat.c
install: gaycat
install gaycat /usr/local/bin/
mkdir -p /usr/local/share/man/man6
install gaycat.6 /usr/local/share/man/man6/
clean:
rm -f gaycat
all: gaycat