Files
c_progarm/zl77/Makefile

16 lines
166 B
Makefile
Raw Normal View History

2023-11-22 18:02:53 +08:00
CC = gcc
2023-12-02 11:52:15 +08:00
# SRCS = $(wildcard *.c)
SRCS = zl77.c ../huffman/huffman_.c
2023-11-22 18:02:53 +08:00
STR = $(subst from,to,from your heart)
all:
$(CC) $(SRCS) -o hello
clean:
rm -rf *.exe