You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
CXX = clang++-10
|
|
CXXFLAGS = --std=c++20 -Wall -Wextra -pedantic
|
|
|
|
CXXFILES = $(wildcard *.cpp)
|
|
|
|
OUTELF = stmdspgui
|
|
|
|
all: $(CXXFILES)
|
|
@echo " CXX " $(CXXFILES)
|
|
@$(CXX) $(CXXFLAGS) $(CXXFILES) -o $(OUTELF)
|
|
|
|
clean:
|
|
@echo " CLEAN"
|
|
@rm -f $(OUTELF)
|
|
|