Files
seer/tests/helloimage/Makefile
T
2022-10-29 12:27:10 -05:00

11 lines
209 B
Makefile

.PHONY: all
all: helloimage
helloimage: helloimage.cpp
g++ -std=c++17 -g -I/usr/include/qt5 -o helloimage helloimage.cpp -L/usr/lib64 -lQt5Core -lQt5Gui
.PHONY: clean
clean:
rm -f helloimage helloimage.o