From a187241f4e4cf8a592e0a3cc0b61f949e6184a9e Mon Sep 17 00:00:00 2001 From: Dirk Engling Date: Wed, 30 Jan 2019 18:12:18 +0100 Subject: Add branch name mapper code for v3 --- Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 089ae06..691675e 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -BINARIES=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 +BINARIES=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 CFLAGS += -W -Wall -Wextra -O3 # -Weverything -Wno-cast-align -Wno-padded all: $(BINARIES) @@ -24,8 +24,11 @@ bin/split_version_2: src/export/split_version_2.c src/export/mystdlib.c bin/map_coords: src/export/map_coords.c src/export/mystdlib.c $(CC) $(CFLAGS) -o $@ src/export/map_coords.c src/export/mystdlib.c -bin/map_branches: src/export/map_branches.c - $(CC) $(CFLAGS) -o $@ src/export/map_branches.c +bin/map_branches_v4: src/export/map_branches_v4.c + $(CC) $(CFLAGS) -o $@ src/export/map_branches_v4.c + +bin/map_branches_v3: src/export/map_branches_v3.c + $(CC) $(CFLAGS) -o $@ src/export/map_branches_v3.c bin/convert_coords: src/export/convert_coords.c $(CC) $(CFLAGS) -o $@ src/export/convert_coords.c -lm -- cgit v1.2.3