remove jam buildfiles, we're using cmake now and I don't want to maintain 2 buildsystems
[supertux.git] / mk / jam / variant.jam
diff --git a/mk/jam/variant.jam b/mk/jam/variant.jam
deleted file mode 100644 (file)
index 12632e3..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-#============================================================================
-# Setup of compiler/linker flags for debug/optimize mode
-#============================================================================
-
-VARIANT ?= optimize ;
-
-# Set modus related flags
-LIBS += $(LDFLAGS) ;
-LOCATE_OBJECTS = $(LOCATE_OBJECTS)/$(VARIANT) ;
-
-##  SubVariant variantname
-##    Specify subvarianet which are placed in separate compilation directories.
-SUBVARIANT ?= "" ;
-rule SubVariant
-{
-  SUBVARIANT = $(<) ;
-  if ! $(<)
-  {
-    SUBVARIANT = "" ;
-    if $(SAVED_LOCATE_TARGET)
-    {
-      LOCATE_TARGET = $(SAVED_LOCATE_TARGET) ;
-    }
-    SAVED_LOCATE_TARGET = ;
-  }
-  else
-  {
-    if ! $(SAVED_LOCATE_TARGET)
-    {
-      SAVED_LOCATE_TARGET = $(LOCATE_TARGET) ;
-    }
-    LOCATE_TARGET = $(LOCATE_TARGET)/$(SUBVARIANT) ;
-  }
-}
-