Renommage du programme en `huffman`

This commit is contained in:
Mattéo Delabre 2016-10-22 02:55:02 +02:00
parent 5fc433cf56
commit 979d9faa6e
2 changed files with 3 additions and 3 deletions

2
.gitignore vendored
View File

@ -1,2 +1,2 @@
*.o
compress
huffman

View File

@ -1,9 +1,9 @@
CC=gcc
CFLAGS=-Wall -std=c99
SRC=src
PROG=compress
PROG=huffman
all: main.o compress.o huftree.o display.o
all: main.o compress.o huftree.o display.o common.o
$(CC) $^ $(CFLAGS) -o $(PROG)
%.o: src/%.c