From 1903115bbd255372cda6218752d655af42e26f2a Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Fri, 3 Jun 2016 00:29:31 -0400 Subject: [PATCH] Pushed all the build files elsewhere. I'm rewriting the CMakeLists files from scratch. --- buildnotes | 45 ------------------- .../CMakeLists.txt | 0 GNUmakefile => migrate_build/GNUmakefile | 0 {build => migrate_build/build}/GNUbasegcc.mk | 0 {build => migrate_build/build}/GNUbasemsvc.mk | 0 .../build}/GNUmakefile.example | 0 .../build}/GNUmakefile.libui | 0 .../build}/GNUmakefile.test | 0 {common => migrate_build/common}/GNUfiles.mk | 0 .../common_CMakeLists.txt | 0 {darwin => migrate_build/darwin}/GNUfiles.mk | 0 .../darwin}/GNUinstall.mk | 0 .../darwin}/GNUosspecific.mk | 0 .../darwin}/GNUosspecificlink.mk | 0 .../darwin_CMakeLists.txt | 0 .../examples_CMakeLists.txt | 0 {test => migrate_build/test}/GNUfiles.mk | 0 .../test_CMakeLists.txt | 0 {unix => migrate_build/unix}/GNUfiles.mk | 0 {unix => migrate_build/unix}/GNUinstall.mk | 0 {unix => migrate_build/unix}/GNUosspecific.mk | 0 .../unix}/GNUosspecificlink.mk | 0 .../unix_CMakeLists.txt | 0 .../windows}/GNUfiles.mk | 0 .../windows}/GNUinstall.mk | 0 .../windows}/GNUosspecific.mk | 0 .../windows_CMakeLists.txt | 0 27 files changed, 45 deletions(-) delete mode 100644 buildnotes rename CMakeLists.txt => migrate_build/CMakeLists.txt (100%) rename GNUmakefile => migrate_build/GNUmakefile (100%) rename {build => migrate_build/build}/GNUbasegcc.mk (100%) rename {build => migrate_build/build}/GNUbasemsvc.mk (100%) rename {build => migrate_build/build}/GNUmakefile.example (100%) rename {build => migrate_build/build}/GNUmakefile.libui (100%) rename {build => migrate_build/build}/GNUmakefile.test (100%) rename {common => migrate_build/common}/GNUfiles.mk (100%) rename common/CMakeLists.txt => migrate_build/common_CMakeLists.txt (100%) rename {darwin => migrate_build/darwin}/GNUfiles.mk (100%) rename {darwin => migrate_build/darwin}/GNUinstall.mk (100%) rename {darwin => migrate_build/darwin}/GNUosspecific.mk (100%) rename {darwin => migrate_build/darwin}/GNUosspecificlink.mk (100%) rename darwin/CMakeLists.txt => migrate_build/darwin_CMakeLists.txt (100%) rename examples/CMakeLists.txt => migrate_build/examples_CMakeLists.txt (100%) rename {test => migrate_build/test}/GNUfiles.mk (100%) rename test/CMakeLists.txt => migrate_build/test_CMakeLists.txt (100%) rename {unix => migrate_build/unix}/GNUfiles.mk (100%) rename {unix => migrate_build/unix}/GNUinstall.mk (100%) rename {unix => migrate_build/unix}/GNUosspecific.mk (100%) rename {unix => migrate_build/unix}/GNUosspecificlink.mk (100%) rename unix/CMakeLists.txt => migrate_build/unix_CMakeLists.txt (100%) rename {windows => migrate_build/windows}/GNUfiles.mk (100%) rename {windows => migrate_build/windows}/GNUinstall.mk (100%) rename {windows => migrate_build/windows}/GNUosspecific.mk (100%) rename windows/CMakeLists.txt => migrate_build/windows_CMakeLists.txt (100%) 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