First batch of changes to turn Whitespace interpreter into VVhitespace interpreter...
[vvhitespace] / Makefile
CommitLineData
249fb9ba
AT
1# (c) 2019 Aaron Taylor <ataylor at subgeniuskitty dot com>
2# All rights reserved.
3
4####################################################################################################
5# Configuration
6
7CC = cc
8CC_FLAGS = -Wall -std=c99
9
10####################################################################################################
11# Build
12
13all: vvc vvi
14
15vvi:
16 $(CC) $(CC_FLAGS) -o $@ vv_interpreter.c
17
18vvc:
19 $(CC) $(CC_FLAGS) -o $@ vv_compiler.c
20
21clean:
22 @rm -f vvc vvc.core vvi vvi.core