renforcement + livre

This commit is contained in:
Debucquoy
2022-11-09 16:22:14 +01:00
parent d574695633
commit 948d17166a
15 changed files with 186 additions and 1 deletions

16
livres/ex_cpp/Makefile Normal file
View File

@ -0,0 +1,16 @@
CXX = c++
CXXFLAGS = -Wall -g
LDFLAGS= -lm
SOURCE_POINTS= points.cpp main.cpp
all: points
points: $(SOURCE_POINTS)
$(CXX) $(CXXFLAGS) -o $@ $(SOURCE_POINTS) $(LDFLAGS)
run: points
./points
clean:
rm -f *.o ./points