Files
c_progarm/zl77/Makefile
2023-12-02 11:52:15 +08:00

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