Warning, file /games/picmi/GNUmakefile was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 bake:
0002         mkdir -p build
0003         cd build; cmake -DCMAKE_BUILD_TYPE="Debug" \
0004                             -DCMAKE_INSTALL_PREFIX="/usr" \
0005                                         -DQT_QMAKE_EXECUTABLE=qmake-qt5 ..; \
0006                           make -j3
0007 
0008 check: bake
0009         cd build; ctest --output-on-failure
0010 
0011 clean:
0012         rm -rf build
0013 
0014