agregar `make test` para probar call_tst

This commit is contained in:
Francisco Demartino 2022-09-07 00:03:22 -03:00 committed by fsandalinas
parent 58ddef2ca1
commit 255a329087
1 changed files with 4 additions and 0 deletions

View File

@ -22,5 +22,9 @@ main: main.o utils.o vm.o
w: $(SRCD)writer.c utils.o
gcc -o $@ $(FLAGS) $(OBJDIR)/utils.o $(SRCD)writer.c
.PHONY: test
test: main w
./w < ../prgms_src/call_tst | ./main
clean:
rm v w