summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDirk Engling <erdgeist@erdgeist.org>2019-01-30 18:12:18 +0100
committerDirk Engling <erdgeist@erdgeist.org>2019-01-30 18:12:18 +0100
commita187241f4e4cf8a592e0a3cc0b61f949e6184a9e (patch)
treeee6adb8733dd81698f4a50bf75aeadbd30f68464 /Makefile
parent0150806fbf0cc64e60984f8a99aa45ca734e0735 (diff)
Add branch name mapper code for v3
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 089ae06..691675e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
1BINARIES=bin/extract_version_1 bin/extract_version_2 bin/extract_version_3 bin/extract_version_4 bin/split_version_2 bin/split_version_3 bin/map_coords bin/map_branches bin/convert_coords bin/join 1BINARIES=bin/extract_version_1 bin/extract_version_2 bin/extract_version_3 bin/extract_version_4 bin/split_version_2 bin/split_version_3 bin/map_coords bin/map_branches_v3 bin/map_branches_v4 bin/convert_coords bin/join
2CFLAGS += -W -Wall -Wextra -O3 # -Weverything -Wno-cast-align -Wno-padded 2CFLAGS += -W -Wall -Wextra -O3 # -Weverything -Wno-cast-align -Wno-padded
3 3
4all: $(BINARIES) 4all: $(BINARIES)
@@ -24,8 +24,11 @@ bin/split_version_2: src/export/split_version_2.c src/export/mystdlib.c
24bin/map_coords: src/export/map_coords.c src/export/mystdlib.c 24bin/map_coords: src/export/map_coords.c src/export/mystdlib.c
25 $(CC) $(CFLAGS) -o $@ src/export/map_coords.c src/export/mystdlib.c 25 $(CC) $(CFLAGS) -o $@ src/export/map_coords.c src/export/mystdlib.c
26 26
27bin/map_branches: src/export/map_branches.c 27bin/map_branches_v4: src/export/map_branches_v4.c
28 $(CC) $(CFLAGS) -o $@ src/export/map_branches.c 28 $(CC) $(CFLAGS) -o $@ src/export/map_branches_v4.c
29
30bin/map_branches_v3: src/export/map_branches_v3.c
31 $(CC) $(CFLAGS) -o $@ src/export/map_branches_v3.c
29 32
30bin/convert_coords: src/export/convert_coords.c 33bin/convert_coords: src/export/convert_coords.c
31 $(CC) $(CFLAGS) -o $@ src/export/convert_coords.c -lm 34 $(CC) $(CFLAGS) -o $@ src/export/convert_coords.c -lm