diff options
| author | Dirk Engling <erdgeist@erdgeist.org> | 2014-02-11 17:12:15 +0100 |
|---|---|---|
| committer | Dirk Engling <erdgeist@erdgeist.org> | 2014-02-11 17:12:15 +0100 |
| commit | 31741d636811d5a0ac5a83f3ccce6875d2a92d78 (patch) | |
| tree | f262c7532a249c1f559ff7149f0eecc17aae9f30 /src | |
| parent | 89bd63b861309eabce0cf7e7fc9f7963e64e9b8a (diff) | |
Add split code for old telefonbuch entries
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index 786a962..1a09455 100644 --- a/src/Makefile +++ b/src/Makefile | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | all: decompress extractblocks mapcoords convertcoords | 1 | all: decompress extractblocks mapcoords convertcoords splitold |
| 2 | 2 | ||
| 3 | decompress: decompress.c mystdlib.c | 3 | decompress: decompress.c mystdlib.c |
| 4 | @$(CC) -O2 -o ../bin/decompress decompress.c mystdlib.c -lz | 4 | @$(CC) -O2 -o ../bin/decompress decompress.c mystdlib.c -lz |
| @@ -9,8 +9,11 @@ extractblocks: extractblocks_new.c mystdlib.c | |||
| 9 | mapcoords: mapcoords.c mystdlib.c | 9 | mapcoords: mapcoords.c mystdlib.c |
| 10 | @$(CC) -o ../bin/mapcoords mapcoords.c mystdlib.c | 10 | @$(CC) -o ../bin/mapcoords mapcoords.c mystdlib.c |
| 11 | 11 | ||
| 12 | splitold: splitold.c mystdlib.c | ||
| 13 | @$(CC) -o ../bin/splitold splitold.c mystdlib.c | ||
| 14 | |||
| 12 | convertcoords: convertcoords.c | 15 | convertcoords: convertcoords.c |
| 13 | @$(CC) -o ../bin/convertcoords convertcoords.c -lm | 16 | @$(CC) -o ../bin/convertcoords convertcoords.c -lm |
| 14 | 17 | ||
| 15 | clean: | 18 | clean: |
| 16 | @rm -f ../bin/{decompress,extractblocks,mapcoords,convertcoords} | 19 | @rm -f ../bin/{decompress,extractblocks,mapcoords,convertcoords,splitold} |
