diff --git a/buildnotes b/buildnotes deleted file mode 100644 index 56c2801f..00000000 --- a/buildnotes +++ /dev/null @@ -1,45 +0,0 @@ -HOW TO BUILD -Simply type - - make [variables...] - -The build-time settings are - - OS=xxx - default operating system - supported OSs are - windows - unix - darwin - haiku - this is autodetected by default - CFLAGS=xxx - CXXFLAGS=xxx - LDFLAGS=xxx - compiler flags - this is where you can specify -m32 or -m64, for instance - Objective-C uses $(CFLAGS) - RELEASE=xxx - set to 1 to disable debug symbols - must be 1, any other value means "include debug symbols" - TODO separate debug symbols from debug runtime - PREFIX=xxx - TODO - DESTDIR=xxx - applied before PREFIX; used by Debian - STATIC=1 - statically link instead of shared - -To build the test program use - - make [variables....] test - -The variables are the same as above. - -To build an example, use - - make EXAMPLE=name [variables...] example - -You must specify the example name. - -TODO discuss the internals diff --git a/CMakeLists.txt b/migrate_build/CMakeLists.txt similarity index 100% rename from CMakeLists.txt rename to migrate_build/CMakeLists.txt diff --git a/GNUmakefile b/migrate_build/GNUmakefile similarity index 100% rename from GNUmakefile rename to migrate_build/GNUmakefile diff --git a/build/GNUbasegcc.mk b/migrate_build/build/GNUbasegcc.mk similarity index 100% rename from build/GNUbasegcc.mk rename to migrate_build/build/GNUbasegcc.mk diff --git a/build/GNUbasemsvc.mk b/migrate_build/build/GNUbasemsvc.mk similarity index 100% rename from build/GNUbasemsvc.mk rename to migrate_build/build/GNUbasemsvc.mk diff --git a/build/GNUmakefile.example b/migrate_build/build/GNUmakefile.example similarity index 100% rename from build/GNUmakefile.example rename to migrate_build/build/GNUmakefile.example diff --git a/build/GNUmakefile.libui b/migrate_build/build/GNUmakefile.libui similarity index 100% rename from build/GNUmakefile.libui rename to migrate_build/build/GNUmakefile.libui diff --git a/build/GNUmakefile.test b/migrate_build/build/GNUmakefile.test similarity index 100% rename from build/GNUmakefile.test rename to migrate_build/build/GNUmakefile.test diff --git a/common/GNUfiles.mk b/migrate_build/common/GNUfiles.mk similarity index 100% rename from common/GNUfiles.mk rename to migrate_build/common/GNUfiles.mk diff --git a/common/CMakeLists.txt b/migrate_build/common_CMakeLists.txt similarity index 100% rename from common/CMakeLists.txt rename to migrate_build/common_CMakeLists.txt diff --git a/darwin/GNUfiles.mk b/migrate_build/darwin/GNUfiles.mk similarity index 100% rename from darwin/GNUfiles.mk rename to migrate_build/darwin/GNUfiles.mk diff --git a/darwin/GNUinstall.mk b/migrate_build/darwin/GNUinstall.mk similarity index 100% rename from darwin/GNUinstall.mk rename to migrate_build/darwin/GNUinstall.mk diff --git a/darwin/GNUosspecific.mk b/migrate_build/darwin/GNUosspecific.mk similarity index 100% rename from darwin/GNUosspecific.mk rename to migrate_build/darwin/GNUosspecific.mk diff --git a/darwin/GNUosspecificlink.mk b/migrate_build/darwin/GNUosspecificlink.mk similarity index 100% rename from darwin/GNUosspecificlink.mk rename to migrate_build/darwin/GNUosspecificlink.mk diff --git a/darwin/CMakeLists.txt b/migrate_build/darwin_CMakeLists.txt similarity index 100% rename from darwin/CMakeLists.txt rename to migrate_build/darwin_CMakeLists.txt diff --git a/examples/CMakeLists.txt b/migrate_build/examples_CMakeLists.txt similarity index 100% rename from examples/CMakeLists.txt rename to migrate_build/examples_CMakeLists.txt diff --git a/test/GNUfiles.mk b/migrate_build/test/GNUfiles.mk similarity index 100% rename from test/GNUfiles.mk rename to migrate_build/test/GNUfiles.mk diff --git a/test/CMakeLists.txt b/migrate_build/test_CMakeLists.txt similarity index 100% rename from test/CMakeLists.txt rename to migrate_build/test_CMakeLists.txt diff --git a/unix/GNUfiles.mk b/migrate_build/unix/GNUfiles.mk similarity index 100% rename from unix/GNUfiles.mk rename to migrate_build/unix/GNUfiles.mk diff --git a/unix/GNUinstall.mk b/migrate_build/unix/GNUinstall.mk similarity index 100% rename from unix/GNUinstall.mk rename to migrate_build/unix/GNUinstall.mk diff --git a/unix/GNUosspecific.mk b/migrate_build/unix/GNUosspecific.mk similarity index 100% rename from unix/GNUosspecific.mk rename to migrate_build/unix/GNUosspecific.mk diff --git a/unix/GNUosspecificlink.mk b/migrate_build/unix/GNUosspecificlink.mk similarity index 100% rename from unix/GNUosspecificlink.mk rename to migrate_build/unix/GNUosspecificlink.mk diff --git a/unix/CMakeLists.txt b/migrate_build/unix_CMakeLists.txt similarity index 100% rename from unix/CMakeLists.txt rename to migrate_build/unix_CMakeLists.txt diff --git a/windows/GNUfiles.mk b/migrate_build/windows/GNUfiles.mk similarity index 100% rename from windows/GNUfiles.mk rename to migrate_build/windows/GNUfiles.mk diff --git a/windows/GNUinstall.mk b/migrate_build/windows/GNUinstall.mk similarity index 100% rename from windows/GNUinstall.mk rename to migrate_build/windows/GNUinstall.mk diff --git a/windows/GNUosspecific.mk b/migrate_build/windows/GNUosspecific.mk similarity index 100% rename from windows/GNUosspecific.mk rename to migrate_build/windows/GNUosspecific.mk diff --git a/windows/CMakeLists.txt b/migrate_build/windows_CMakeLists.txt similarity index 100% rename from windows/CMakeLists.txt rename to migrate_build/windows_CMakeLists.txt