summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorcarsten <>2008-06-03 13:11:43 +0000
committercarsten <>2008-06-03 13:11:43 +0000
commit6df2b90fcc0ce97ad174c7a680b7e92f7e46a68c (patch)
tree3c09a7586b2f32ab51067df14e89a5573c8e161d /src
parent6e94a73e8a20fa4a673a0a0b5f762c45b1b9e100 (diff)
adding a makefile for compiling compress and hexout
Diffstat (limited to 'src')
-rw-r--r--src/Makefile7
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 @@
1all: decompress hexout
2
3decompress: decompress.c mystdlib.c
4 gcc -O2 -o ../bin/decompress decompress.c mystdlib.c -lz
5
6hexout: hexout.c
7 gcc -O2 -o ../bin/hexout hexout.c