X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=Makefile;fp=Makefile;h=0000000000000000000000000000000000000000;hp=81821bcfe4979cbcdca9d0af4e9156086a196a1c;hb=d7052a3218b115ab68d24ea33e670ed26afd19ce;hpb=d064f62ec2f316f17c3aac3c31184376380ef098 diff --git a/Makefile b/Makefile deleted file mode 100644 index 81821bcf..00000000 --- a/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# This Makefile simply runs cmake from the build directory. -# This, of course, triggers an out-of-source build. -# Binaries are going to be in build/. - -default_target: default - -default: - @echo "To start an out-of-source build, change to the build/ directory" - @echo "and run 'cmake ..' to create standard Makefiles. You can then use" - @echo "'make' from the build/ directory to compile the project." - @echo - @echo "To create KDevelop3 project files instead, run 'cmake .. -GKDevelop3'" - @echo "from the build/ directory." - @echo - @echo "Please refer to the INSTALL file for more options, such as" - @echo "client/server builds." - @echo - -run_cmake: - cd build && cmake .. && make - -build_mono_windows: - cd build && cmake -DBUILD="mono" .. -G "MinGW Makefiles" && mingw32-make - -build_windows: - cd build && cmake -DBUILD="core gui" .. -G "MinGW Makefiles" && mingw32-make - -clean: - rm -rf build/*