diff options
Diffstat (limited to 'src')
-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 | ||