BCI-dev/interpreter/test/Makefile

13 lines
137 B
Makefile
Raw Normal View History

2018-09-26 16:22:36 +00:00
CC=gcc
all: test_stack
stack: clean
$(CC) -g ../stack.c test_stack.c -o stack
test_stack: stack
valgrind ./stack
clean:
-rm stack