From 766d64916d507cac77e9b6b69cc14c59c9d75ecc Mon Sep 17 00:00:00 2001 From: fishsoupisgood Date: Tue, 16 Jun 2020 20:55:46 +0100 Subject: fish --- Makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ed13995..7fe50e9 100644 --- a/Makefile +++ b/Makefile @@ -1 +1,9 @@ -pingid:pingid.c +pingid:pingid.o + ${CC} ${CFLAGS} ${LDFLAGS} -o $@ $< ${LIBS} + +clean: + /bin/rm -f pingid.o *~ pingid *.orig + +install: + mkdir -p ${DESTDIR}/usr/bin/ + install -m 755 pingid ${DESTDIR}/usr/bin/ -- cgit v1.2.3