summaryrefslogtreecommitdiff
path: root/sem_3/SYSTEME/TP3/HUFFMAN/Makefile
blob: 63886ef40df694d246ac53de0193ebdd37c9f451 (plain)
1
2
3
4
5
6
7
8
9
all : dehuf.o huf.o
	gcc -Wall -ansi -pedantic -std=c99 dehuf.o -o dehuf -lm
	gcc -Wall -ansi -pedantic -std=c99 distrib.o -o huf -lm
dehuf.o : dehuf.c
	gcc -Wall -ansi -pedantic -std=c99 -c dehuf.c
huf.o : distrib.c
	gcc -Wall -ansi -pedantic -std=c99 -c distrib.c
clean :
	rm *.o