Skip to content

Commit

Permalink
Add clean targets for scubainit
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathonReinhart committed Aug 6, 2016
1 parent cc363b4 commit 2ba3ece
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Makefile
Expand Up @@ -4,3 +4,8 @@
scuba/scubainit:
make -C scubainit
cp scubainit/scubainit $@

.PHONY: clean
clean:
make -C scubainit clean
rm scuba/scubainit
4 changes: 4 additions & 0 deletions scubainit/Makefile
Expand Up @@ -3,3 +3,7 @@ CFLAGS = -Wall -Wextra -Werror -static -s

scubainit: scubainit.c
$(CC) $(CFLAGS) -o $@ $^

.PHONY: clean
clean:
rm scubainit

0 comments on commit 2ba3ece

Please sign in to comment.