This commit is contained in:
Hladu357 2025-02-20 13:03:29 +02:00
parent bba3b8e36d
commit ce2dbfb2da
1 changed files with 15 additions and 0 deletions

15
CT1/Makefile Normal file
View File

@ -0,0 +1,15 @@
CXX = g++
CXXFLAGS = -std=c++20 -Wall -pedantic -O2
SRCS = $(wildcard *.cpp)
EXECS = $(SRCS:.cpp=)
all: $(EXECS)
%: %.cpp
$(CXX) $(CXXFLAGS) -o $@ $<
clean:
rm -f $(EXECS)
.PHONY: all clean