Index: index.c
===================================================================
--- index.c	(revision 0)
+++ index.c	(revision 1)
@@ -0,0 +1,94 @@
+#ifndef FORCE_LIBRAYDIUM
+/*
+* Raydium - CQFD Corp.
+* http://raydium.cqfd-corp.org
+*
+* This program is free software; you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation; either version 2 of the License, or
+* (at your option) any later version.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with this program; if not, write to the Free Software
+* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+*/
+
+// Include this file if you want to use "[o]comp*.sh" scripts, for
+// a full compilation + run.
+// Define "FORCE_LIBRAYDIUM" (-DFORCE_LIBRAYDIUM) if you want to
+// force index.h (see dyncomp.sh).
+
+#define DONT_INCLUDE_HEADERS 
+
+#include "main.c"
+
+// let's start "compile time static linking" ;)
+#ifndef RAYDIUM_NETWORK_ONLY
+#include "log.c"
+#include "signal.c"
+#include "trigo.c"
+#include "random.c"
+#include "timecall.c"
+#include "profile.c"
+#include "parser.c"
+#include "fog.c"
+#include "window.c"
+#include "capture.c"
+#include "clear.c"
+#include "background.c"
+#include "light.c"
+#include "key.c"
+#include "mouse.c"
+#include "joy.c"
+#include "texture.c"
+#include "render.c"
+#include "particle2.c"
+#include "sound.c"
+#include "callback.c"
+#include "normal.c"
+#include "vertex.c"
+#include "osd.c"
+#include "register.c"
+#ifdef PHP_SUPPORT
+#include "php.c"
+#include "rayphp.c"
+#endif
+#include "console.c"
+#include "gui.c"
+#include "land.c"
+#include "sky.c"
+#include "internal.c"
+#include "file.c"
+#include "camera.c"
+#include "object.c"
+#include "network.c"
+#include "init.c"
+#ifdef ODE_SUPPORT
+#include "ode.c"
+#endif
+#include "reg_api.c"
+
+#else
+
+#include "log.c"
+#include "trigo.c"
+#include "random.c"
+#include "timecall.c"
+#include "parser.c"
+#include "network.c"
+#include "register.c"
+#ifdef PHP_SUPPORT
+#include "php.c"
+#endif
+#endif
+
+#else
+// FORCE_LIBRAYDIUM is defined
+#include "index.h"
+#endif
+// EOF