This commit is contained in:
Ernie Pasveer
2025-12-11 15:29:41 -06:00
parent 8bba16e766
commit 8383ce353f
5 changed files with 140 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
.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