16 lines
166 B
Makefile
16 lines
166 B
Makefile
|
|
|
|
CC = gcc
|
|
|
|
|
|
# SRCS = $(wildcard *.c)
|
|
SRCS = zl77.c ../huffman/huffman_.c
|
|
|
|
STR = $(subst from,to,from your heart)
|
|
|
|
all:
|
|
$(CC) $(SRCS) -o hello
|
|
|
|
clean:
|
|
rm -rf *.exe
|