summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirk Engling <erdgeist@erdgeist.org>2015-05-03 01:10:45 +0200
committerDirk Engling <erdgeist@erdgeist.org>2015-05-03 01:10:45 +0200
commit1965f3d32fa8bb63965135dc06985a3dec0af81b (patch)
tree943b1e437af5325303a7a68de036cc24cf79a7be
parent8916a3d9824e1b53e4a739e0f9b60258809bd7ce (diff)
Build exporter for version 2, too
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 01507ae..cc8af84 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
1BINARIES=bin/extract_version_1 bin/extract_version_3 bin/extract_version_4 bin/split_version_3 bin/map_coords bin/convert_coords 1BINARIES=bin/extract_version_1 bin/extract_version_2 bin/extract_version_3 bin/extract_version_4 bin/split_version_3 bin/map_coords bin/convert_coords
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)
@@ -9,6 +9,9 @@ bin/extract_version_4: src/export/extract_version_4.c src/export/mystdlib.c
9bin/extract_version_3: src/export/extract_version_3.c src/export/mystdlib.c 9bin/extract_version_3: src/export/extract_version_3.c src/export/mystdlib.c
10 $(CC) $(CFLAGS) -o $@ src/export/extract_version_3.c src/export/mystdlib.c 10 $(CC) $(CFLAGS) -o $@ src/export/extract_version_3.c src/export/mystdlib.c
11 11
12bin/extract_version_2: src/export/extract_version_2.c src/export/mystdlib.c
13 $(CC) $(CFLAGS) -o $@ src/export/extract_version_2.c src/export/mystdlib.c
14
12bin/extract_version_1: src/export/extract_version_1.c src/export/mystdlib.c 15bin/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 16 $(CC) $(CFLAGS) -o $@ src/export/extract_version_1.c src/export/mystdlib.c
14 17