Renommage du programme en `huffman`
This commit is contained in:
parent
5fc433cf56
commit
979d9faa6e
|
@ -1,2 +1,2 @@
|
||||||
*.o
|
*.o
|
||||||
compress
|
huffman
|
||||||
|
|
4
Makefile
4
Makefile
|
@ -1,9 +1,9 @@
|
||||||
CC=gcc
|
CC=gcc
|
||||||
CFLAGS=-Wall -std=c99
|
CFLAGS=-Wall -std=c99
|
||||||
SRC=src
|
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)
|
$(CC) $^ $(CFLAGS) -o $(PROG)
|
||||||
|
|
||||||
%.o: src/%.c
|
%.o: src/%.c
|
||||||
|
|
Loading…
Reference in New Issue