-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile
45 lines (33 loc) · 953 Bytes
/
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
CC=g++
CFLAGS=-std=c++17 -g
all: check_brackets fill_region trees graphs fast_to_string compress_string bits huffman \
arrays text
arrays: arrays.cpp
$(CC) $(CFLAGS) -o arrays arrays.cpp
text: text.cpp
$(CC) $(CFLAGS) -o text text.cpp
huffman: huffman.cpp
$(CC) $(CFLAGS) -o huffman huffman.cpp
trees: trees.cpp
$(CC) $(CFLAGS) -o trees trees.cpp
bits: bits.cpp
$(CC) $(CFLAGS) -o bits bits.cpp
check_brackets: check_brackets.cpp
$(CC) $(CFLAGS) -o check_brackets check_brackets.cpp
fill_region: fill_region.cpp
$(CC) $(CFLAGS) -o fill_region fill_region.cpp
graphs: graphs.cpp
$(CC) $(CFLAGS) -o graphs graphs.cpp
fast_to_string: fast_to_string.cpp
$(CC) $(CFLAGS) -o fast_to_string fast_to_string.cpp
compress_string: compress_string.cpp
$(CC) $(CFLAGS) -o compress_string compress_string.cpp
clean:
rm check_brackets
rm fill_region
rm trees
rm graphs
rm fast_to_string
rm compress_string
rm bits
rm huffman text arrays