comparison Huffman/Makefile @ 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
children 2ec14e6d8303
comparison
equal deleted inserted replaced
15:7da9f2892b4e 16:f1ffbc100990
1 CC = gcc
2 CFLAGS = -O3
3 PROG = test-huffman
4
5 all: $(PROG)
6
7 test-huffman: test-huffman.c
8 $(CC) $(CFLAGS) -o $@ $^
9
10 clean:
11 rm -rf $(PROG) *.dSYM