diff options
author | Dirk Engling <erdgeist@erdgeist.org> | 2019-06-29 18:51:00 +0200 |
---|---|---|
committer | Dirk Engling <erdgeist@erdgeist.org> | 2019-06-29 18:51:00 +0200 |
commit | fb3616e06ca20ffe78dfb00b962a2599a46b2a5f (patch) | |
tree | fe7ad54e8cb17174b3296b63f41ad1f5b1038f8e /Makefile | |
parent | b4bf8417af0d8ebff2c50570c70fdecaf6a53ed9 (diff) |
Clean up 1992 post processing
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/map_branches_v3 bin/map_branches_v4 bin/convert_coords bin/merge_entries bin/sort_plz # 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_v3 bin/map_branches_v4 bin/convert_coords bin/merge_entries bin/sort_plz bin/map_plz # bin/join |
2 | CFLAGS += -W -Wall -Wextra -O3 -I src/export # -Weverything -Wno-cast-align -Wno-padded | 2 | CFLAGS += -W -Wall -Wextra -O3 -I src/export # -Weverything -Wno-cast-align -Wno-padded |
3 | 3 | ||
4 | all: $(BINARIES) | 4 | all: $(BINARIES) |
@@ -42,6 +42,9 @@ bin/merge_entries: src/postprocess/merge_entries.c src/export/mystdlib.c src/pos | |||
42 | bin/sort_plz: src/postprocess/sort_plz.c | 42 | bin/sort_plz: src/postprocess/sort_plz.c |
43 | $(CC) $(CFLAGS) -o $@ src/postprocess/sort_plz.c | 43 | $(CC) $(CFLAGS) -o $@ src/postprocess/sort_plz.c |
44 | 44 | ||
45 | bin/map_plz: src/postprocess/map_plz.c src/export/mystdlib.c | ||
46 | $(CC) $(CFLAGS) -o $@ src/postprocess/map_plz.c src/export/mystdlib.c | ||
47 | |||
45 | .PHONY: clean | 48 | .PHONY: clean |
46 | clean: | 49 | clean: |
47 | @rm -f $(BINARIES) | 50 | @rm -f $(BINARIES) |