mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-25 10:06:28 +08:00
fix(codes/c): Remove makefile
This commit is contained in:
parent
c461b13436
commit
2ff4c00fea
1 changed files with 0 additions and 15 deletions
|
@ -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}
|
Loading…
Reference in a new issue