fix(codes/c): Remove makefile

This commit is contained in:
Gonglja 2023-01-14 20:33:58 +08:00
parent c461b13436
commit 2ff4c00fea

View file

@ -1,15 +0,0 @@
CXXFLAGS = # -Wall -Werror
LDFLAGS =
src = $(wildcard ./*/*.c)
target = $(patsubst %.c, %, ${src})
.PHONY: all clean
%:%.cpp
$(CXX) ${CXXFLAGS} ${LDFLAGS} $^ -o $@
all: ${target}
clean:
rm -f ${target}