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

16 lines
129 B
Makefile

CC = gcc
SRCS = $(wildcard *.c)
STR = $(subst from,to,from your heart)
all:
$(CC) $(SRCS) -o hello
clean:
rm -rf *.exe