mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 16:40:42 +08:00
11 lines
212 B
Makefile
11 lines
212 B
Makefile
.PHONY: all
|
|
all: helloimage
|
|
|
|
helloimage: helloimage.cpp
|
|
g++-13 -std=c++17 -g -I/usr/include/qt6 -o helloimage helloimage.cpp -L/usr/lib64 -lQt6Core -lQt6Gui
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f helloimage helloimage.o
|
|
|