From 98d655c8d08eeb01a467b0eac43dfd47553fa5bb Mon Sep 17 00:00:00 2001 From: Aaron Marcher Date: Mon, 9 Jan 2017 08:24:26 +0100 Subject: [PATCH] Makefile: Fixes #35 --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index afdbcdf..38712c5 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,9 @@ NAME=slstatus all: ${NAME} +${NAME}: + ${CC} ${CFLAGS} -o $@ ${NAME}.c ${LDFLAGS} + clean: rm -f ${NAME}