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.
20 lines
372 B
Makefile
20 lines
372 B
Makefile
CXX = g++-10
|
|
CXXFLAGS = --std=c++20 -ggdb -Og \
|
|
-Wall -Wextra -pedantic \
|
|
-Wno-deprecated-copy \
|
|
$(shell wx-config --cxxflags)
|
|
|
|
CXXFILES = $(wildcard *.cpp)
|
|
|
|
LIBS = $(shell wx-config --libs)
|
|
OUTELF = stmdspgui
|
|
|
|
all: $(CXXFILES)
|
|
@echo " CXX " $(CXXFILES)
|
|
@$(CXX) $(CXXFLAGS) $(CXXFILES) $(LIBS) -o $(OUTELF)
|
|
|
|
clean:
|
|
@echo " CLEAN"
|
|
@rm -f $(OUTELF)
|
|
|