Files
seer/tests/helloutl/Makefile
T
2023-04-29 08:58:35 -05:00

12 lines
281 B
Makefile

.PHONY: all
all: helloutl
# Needs a valid build directory to get SeerUtl.cpp.o
helloutl: helloutl.cpp
g++ -I/usr/include/qt5 -g -o helloutl helloutl.cpp ../../src/build/CMakeFiles/seergdb.dir/SeerUtl.cpp.o -L/usr/lib64 -lQt5Core
.PHONY: clean
clean:
rm -f helloutl helloutl.o