Files
c_progarm/huffman/Makefile

16 lines
129 B
Makefile
Raw Normal View History

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