diff options
author | carsten <> | 2008-06-03 13:11:43 +0000 |
---|---|---|
committer | carsten <> | 2008-06-03 13:11:43 +0000 |
commit | 6df2b90fcc0ce97ad174c7a680b7e92f7e46a68c (patch) | |
tree | 3c09a7586b2f32ab51067df14e89a5573c8e161d /src/Makefile | |
parent | 6e94a73e8a20fa4a673a0a0b5f762c45b1b9e100 (diff) |
adding a makefile for compiling compress and hexout
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile new file mode 100644 index 0000000..8de6d8b --- /dev/null +++ b/src/Makefile | |||
@@ -0,0 +1,7 @@ | |||
1 | all: decompress hexout | ||
2 | |||
3 | decompress: decompress.c mystdlib.c | ||
4 | gcc -O2 -o ../bin/decompress decompress.c mystdlib.c -lz | ||
5 | |||
6 | hexout: hexout.c | ||
7 | gcc -O2 -o ../bin/hexout hexout.c | ||