diff options
author | Dirk Engling <erdgeist@erdgeist.org> | 2015-04-29 12:44:47 +0200 |
---|---|---|
committer | Dirk Engling <erdgeist@erdgeist.org> | 2015-04-29 12:44:47 +0200 |
commit | 43a5ac139b552b23de78434a8ee3df8fc6651b38 (patch) | |
tree | 759f5b2a10719d1a12d5ebf0279b4e193506141b /Makefile | |
parent | 18c51711a08db1a13f7829638295e062b90d8601 (diff) |
We have a new format between the former version 1 and 2. So shift version numbers. Add README
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1,19 +1,19 @@ | |||
1 | BINARIES=bin/extract_version_1 bin/extract_version_2 bin/extract_version_3 bin/split_version_2 bin/map_coords bin/convert_coords | 1 | BINARIES=bin/extract_version_1 bin/extract_version_3 bin/extract_version_4 bin/split_version_3 bin/map_coords bin/convert_coords |
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) |
5 | 5 | ||
6 | bin/extract_version_3: src/export/extract_version_3.c src/export/mystdlib.c | 6 | bin/extract_version_4: src/export/extract_version_4.c src/export/mystdlib.c |
7 | $(CC) $(CFLAGS) -o $@ src/export/extract_version_3.c src/export/mystdlib.c -lz | 7 | $(CC) $(CFLAGS) -o $@ src/export/extract_version_4.c src/export/mystdlib.c -lz |
8 | 8 | ||
9 | bin/extract_version_2: src/export/extract_version_2.c src/export/mystdlib.c | 9 | bin/extract_version_3: src/export/extract_version_3.c src/export/mystdlib.c |
10 | $(CC) $(CFLAGS) -o $@ src/export/extract_version_2.c src/export/mystdlib.c | 10 | $(CC) $(CFLAGS) -o $@ src/export/extract_version_3.c src/export/mystdlib.c |
11 | 11 | ||
12 | bin/extract_version_1: src/export/extract_version_1.c src/export/mystdlib.c | 12 | bin/extract_version_1: src/export/extract_version_1.c src/export/mystdlib.c |
13 | $(CC) $(CFLAGS) -o $@ src/export/extract_version_1.c src/export/mystdlib.c | 13 | $(CC) $(CFLAGS) -o $@ src/export/extract_version_1.c src/export/mystdlib.c |
14 | 14 | ||
15 | bin/split_version_2: src/export/split_version_2.c | 15 | bin/split_version_3: src/export/split_version_3.c |
16 | $(CC) $(CFLAGS) -o $@ src/export/split_version_2.c | 16 | $(CC) $(CFLAGS) -o $@ src/export/split_version_3.c |
17 | 17 | ||
18 | bin/map_coords: src/export/map_coords.c src/export/mystdlib.c | 18 | bin/map_coords: src/export/map_coords.c src/export/mystdlib.c |
19 | $(CC) $(CFLAGS) -o $@ src/export/map_coords.c src/export/mystdlib.c | 19 | $(CC) $(CFLAGS) -o $@ src/export/map_coords.c src/export/mystdlib.c |