changeset 16:f1ffbc100990 draft

add Makefile
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Tue, 31 Jul 2012 04:18:20 +0900
parents 7da9f2892b4e
children 2ec14e6d8303
files Huffman/Makefile
diffstat 1 files changed, 11 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Huffman/Makefile	Tue Jul 31 04:18:20 2012 +0900
@@ -0,0 +1,11 @@
+CC = gcc
+CFLAGS = -O3
+PROG = test-huffman
+
+all: $(PROG)
+
+test-huffman: test-huffman.c
+	$(CC) $(CFLAGS) -o $@ $^
+
+clean:
+	rm -rf $(PROG) *.dSYM