diff options
| author | Dirk Engling <erdgeist@erdgeist.org> | 2015-06-02 19:44:12 +0200 |
|---|---|---|
| committer | Dirk Engling <erdgeist@erdgeist.org> | 2015-06-02 19:44:12 +0200 |
| commit | 4c3a31b1b03e72e65e080bfcb017ceb9619847a4 (patch) | |
| tree | 613a36c62789e01dc5ce314c10da603eaca64d95 /Makefile | |
| parent | b3a053c07a9f43b951196c62533d6dab0d3ccd3d (diff) | |
Cleanup known broken input data, build join.c
Diffstat (limited to 'Makefile')
| -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 | 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 |
| 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) |
| @@ -27,6 +27,9 @@ bin/map_coords: src/export/map_coords.c src/export/mystdlib.c | |||
| 27 | bin/convert_coords: src/export/convert_coords.c | 27 | bin/convert_coords: src/export/convert_coords.c |
| 28 | $(CC) $(CFLAGS) -o $@ -lm src/export/convert_coords.c | 28 | $(CC) $(CFLAGS) -o $@ -lm src/export/convert_coords.c |
| 29 | 29 | ||
| 30 | bin/join: src/postprocess/join.c src/export/mystdlib.c | ||
| 31 | $(CC) $(CFLAGS) -o $@ src/postprocess/join.c src/export/mystdlib.c -Isrc/export | ||
| 32 | |||
| 30 | .PHONY: clean | 33 | .PHONY: clean |
| 31 | clean: | 34 | clean: |
| 32 | @rm -f $(BINARIES) | 35 | @rm -f $(BINARIES) |
