move check rule into src/

This commit is contained in:
Quentin Carbonneaux 2016-03-27 19:13:34 -04:00
parent 3406a5fb2f
commit 205221226f
4 changed files with 10 additions and 9 deletions

View file

@ -7,7 +7,8 @@ $(BIN): yacc minic.y
$(CC) $(CFLAGS) -o $@ y.tab.c
all: $(BIN)
check:
clean:
rm -f yacc minic y.*
.PHONY: all clean
.PHONY: all check clean