diff options
-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_3 bin/extract_version_4 bin/split_version_3 bin/map_coords bin/convert_coords | 1 | BINARIES=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 |
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) |
@@ -9,6 +9,9 @@ bin/extract_version_4: src/export/extract_version_4.c src/export/mystdlib.c | |||
9 | bin/extract_version_3: src/export/extract_version_3.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_3.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_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 | |||
12 | bin/extract_version_1: src/export/extract_version_1.c src/export/mystdlib.c | 15 | 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 | 16 | $(CC) $(CFLAGS) -o $@ src/export/extract_version_1.c src/export/mystdlib.c |
14 | 17 | ||