diff options
| author | Dirk Engling <erdgeist@erdgeist.org> | 2019-01-22 22:51:18 +0100 | 
|---|---|---|
| committer | Dirk Engling <erdgeist@erdgeist.org> | 2019-01-22 22:51:18 +0100 | 
| commit | 1265d90390a147ed6368451d9927e0d82792265f (patch) | |
| tree | 573cdd44c3d6d0223ee22dcd79234fc6fb2c8f6d | |
| parent | 1f15b520ad6af093d196f624e0078d9a118ff02f (diff) | |
Add code that looks up Branchen names by codes
| -rw-r--r-- | Makefile | 5 | 
1 files changed, 4 insertions, 1 deletions
| @@ -1,4 +1,4 @@ | |||
| 1 | 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/convert_coords bin/join | 1 | 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 | 
| 2 | CFLAGS += -W -Wall -Wextra -O3 # -Weverything -Wno-cast-align -Wno-padded | 2 | CFLAGS += -W -Wall -Wextra -O3 # -Weverything -Wno-cast-align -Wno-padded | 
| 3 | 3 | ||
| 4 | all: $(BINARIES) | 4 | all: $(BINARIES) | 
| @@ -24,6 +24,9 @@ bin/split_version_2: src/export/split_version_2.c src/export/mystdlib.c | |||
| 24 | bin/map_coords: src/export/map_coords.c src/export/mystdlib.c | 24 | bin/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 | ||
| 27 | bin/map_branches: src/export/map_branches.c | ||
| 28 | $(CC) $(CFLAGS) -o $@ src/export/map_branches.c | ||
| 29 | |||
| 27 | bin/convert_coords: src/export/convert_coords.c | 30 | bin/convert_coords: src/export/convert_coords.c | 
| 28 | $(CC) $(CFLAGS) -o $@ src/export/convert_coords.c -lm | 31 | $(CC) $(CFLAGS) -o $@ src/export/convert_coords.c -lm | 
| 29 | 32 | ||
