Initial commit
This commit is contained in:
14
interpreters/Makefile
Normal file
14
interpreters/Makefile
Normal file
@@ -0,0 +1,14 @@
|
||||
CC = c99
|
||||
CFLAGS = -O3
|
||||
|
||||
NAMES = bf bf-faster-loops bf-optimizing \
|
||||
bf-jit bf-jit-opt bf-jit-unsafe bf-jit-unsafe-opt
|
||||
|
||||
all: $(NAMES)
|
||||
|
||||
%: %.c
|
||||
$(CC) $(CPPFLAGS) $(CFLAGS) $< -o $@
|
||||
clean:
|
||||
rm -f $(NAMES)
|
||||
|
||||
.PHONY: all clean
|
||||
Reference in New Issue
Block a user