From 979d9faa6e02044c1e010959fd3448739e658ce1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matt=C3=A9o=20Delabre=20=E2=9C=8F?= Date: Sat, 22 Oct 2016 02:55:02 +0200 Subject: [PATCH] Renommage du programme en `huffman` --- .gitignore | 2 +- Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 62f230c..bb87d64 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ *.o -compress +huffman diff --git a/Makefile b/Makefile index dbf81ec..a05abf4 100644 --- a/Makefile +++ b/Makefile @@ -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