diff options
author | Aaron Marcher <info@nulltime.net> | 2017-01-09 08:24:26 +0100 |
---|---|---|
committer | Aaron Marcher <info@nulltime.net> | 2017-01-09 08:24:26 +0100 |
commit | 98d655c8d08eeb01a467b0eac43dfd47553fa5bb (patch) | |
tree | 8840088a71f7ca3e2dee77de1e846af07c7aa101 /Makefile | |
parent | 99bc258586dcb1e5358a8102091c7fc6cf1c9361 (diff) |
Makefile: Fixes #35
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -6,6 +6,9 @@ NAME=slstatus all: ${NAME} +${NAME}: + ${CC} ${CFLAGS} -o $@ ${NAME}.c ${LDFLAGS} + clean: rm -f ${NAME} |