[dev] 'make clean' rule

This commit is contained in:
Milo Turner 2020-02-08 09:24:50 -05:00
parent b0c3c9e013
commit 9837efa5c0
1 changed files with 4 additions and 1 deletions

View File

@ -17,7 +17,10 @@ test_bin = axtest
all: ${test_bin}
clean:
rm -rf ${test_bin}
${test_bin}: ${srcs} ${hdrs}
${cc} ${cflags} ${srcs} -o ${test_bin}
.PHONY: all
.PHONY: all clean