-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
45 lines (38 loc) · 1.16 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
TT = $(shell c++ -dumpmachine)
BFC = dist/$(TT)-bfc
BFC_TEST_FLAGS = -re
SRC := $(shell find src -type f -name "*.cpp")
OFILES := $(SRC:.cpp=.o)
.PHONY: all
all: detect $(BFC)
cp $(BFC) dist/bfc
.PHONY: detect
detect:
@echo "Detecting required dependencies..."
@echo "C++..."
@sh -c "c++ --version > /dev/null" 2> /dev/null || ( echo "Please install a C++ compiler."; exit 1 )
@echo "NASM..."
@sh -c "nasm --version > /dev/null" 2> /dev/null || ( echo "Please install NASM."; exit 1 )
@echo "All dependencies were found."
.PHONY: test
test: $(BFC)
@echo "Testing..."
@echo "Extracting Compressed tests..."
@chmod +x tests/*.sh
@cd tests && ./buildTests.sh
./$(BFC) tests/test1.bf BFC_TEST_FLAGS > /dev/null
./$(BFC) tests/test2.bf BFC_TEST_FLAGS > /dev/null
./$(BFC) tests/test3.bf BFC_TEST_FLAGS 2> /dev/null || echo -n
./$(BFC) tests/test4.bf BFC_TEST_FLAGS 2> /dev/null || echo -n
./$(BFC) tests/test5.bf BFC_TEST_FLAGS
./$(BFC) tests/test6.bf BFC_TEST_FLAGS
@echo "Cleaning up..."
@cd tests && ./deleteTests.sh
.PHONY: clean
clean:
rm -fr dist $(BFC) $(OFILES)
$(BFC): $(OFILES)
mkdir -p dist
c++ -o $@ $^
%.o: %.cpp
c++ -o $@ -c $< -Iinclude -Ilib