BCI-base/interpreter/test/Makefile

13 lines
137 B
Makefile
Raw Normal View History

2018-10-03 21:26:02 +00:00
CC=gcc
2018-10-27 17:49:38 +00:00
all: test_stack
2018-10-03 21:26:02 +00:00
2018-10-27 17:49:38 +00:00
stack: clean
$(CC) -g ../stack.c test_stack.c -o stack
2018-10-03 21:26:02 +00:00
2018-10-27 17:49:38 +00:00
test_stack: stack
valgrind ./stack
2018-10-03 21:26:02 +00:00
clean:
2018-10-27 17:49:38 +00:00
-rm stack