Files
c_progarm/Makefile
2023-11-22 18:02:53 +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