Files
seer/tests/hellorecursive/Makefile
T

11 lines
241 B
Makefile
Raw Normal View History

2025-12-11 15:29:41 -06:00
.PHONY: all
all: hellorecursive
hellorecursive: hellorecursive.cpp
g++ -std=c++17 -g -I/usr/include/qt6 -o hellorecursive hellorecursive.cpp -L/usr/lib64 -lQt6Widgets -lQt6Core
.PHONY: clean
clean:
rm -f hellorecursive hellorecursive.o