diff options
author | Dirk Engling <erdgeist@erdgeist.org> | 2014-02-02 08:54:04 +0100 |
---|---|---|
committer | Dirk Engling <erdgeist@erdgeist.org> | 2014-02-02 08:54:04 +0100 |
commit | 46f8ba5f4bed3a5c29a7416a10e332bb0ca0b3bc (patch) | |
tree | 1219a29c3bcb937e7e828fb5101d2af831410ad2 /src/Makefile | |
parent | 8df5dd9620dfa1462b6973d393f6891b612ae256 (diff) |
Add a coordinate file extractor
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile index 8d1a66d..0ccb1f9 100644 --- a/src/Makefile +++ b/src/Makefile | |||
@@ -1,7 +1,10 @@ | |||
1 | all: decompress extractblocks | 1 | all: decompress extractblocks mapcoords |
2 | 2 | ||
3 | decompress: decompress.c mystdlib.c | 3 | decompress: decompress.c mystdlib.c |
4 | gcc -O2 -o ../bin/decompress decompress.c mystdlib.c -lz | 4 | $(CC) -O2 -o ../bin/decompress decompress.c mystdlib.c -lz |
5 | 5 | ||
6 | extractblocks: extractblocks_new.c mystdlib.c | 6 | extractblocks: extractblocks_new.c mystdlib.c |
7 | gcc -o ../bin/extractblocks extractblocks_new.c mystdlib.c | 7 | $(CC) -o ../bin/extractblocks extractblocks_new.c mystdlib.c |
8 | |||
9 | mapcoords: mapcoords.c mystdlib.c | ||
10 | $(CC) -o ../bin/mapcoords mapcoords.c mystdlib.c | ||