16 lines
129 B
Makefile
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
|