summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt.opengl/gtk/gl_library/make_gtk.mak
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt.opengl/gtk/gl_library/make_gtk.mak')
-rw-r--r--bundles/org.eclipse.swt.opengl/gtk/gl_library/make_gtk.mak52
1 files changed, 0 insertions, 52 deletions
diff --git a/bundles/org.eclipse.swt.opengl/gtk/gl_library/make_gtk.mak b/bundles/org.eclipse.swt.opengl/gtk/gl_library/make_gtk.mak
deleted file mode 100644
index d765b8bd5e..0000000000
--- a/bundles/org.eclipse.swt.opengl/gtk/gl_library/make_gtk.mak
+++ /dev/null
@@ -1,52 +0,0 @@
-#*******************************************************************************
-# Copyright (c) 2000, 2003 IBM Corporation and others.
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Common Public License v1.0
-# which accompanies this distribution, and is available at
-# http://www.eclipse.org/legal/cpl-v10.html
-#
-# Contributors:
-# IBM Corporation - initial API and implementation
-#*******************************************************************************
-
-# Define the installation directories for various products.
-JAVA_HOME = /bluebird/teamswt/swt-builddir/ive/bin
-
-CC=gcc
-LD=gcc
-
-# Define the various shared libraries to be made.
-WS_PREFIX = gtk
-GL_PREFIX = gl
-GL_DLL = lib$(GL_PREFIX)-$(WS_PREFIX).so
-GL_OBJ = gl.o glu.o structs.o glx.o
-GL_LIB = -shared -L/usr/X11R6/lib -lGL -lGLU -lm
-XGTK_PREFIX = xgtk
-XGTK_DLL = lib$(XGTK_PREFIX)-$(WS_PREFIX).so
-XGTK_OBJ = xgtk.o
-XGTK_LIB = -shared `pkg-config --libs gtk+-2.0 gthread-2.0`
-
-#
-# The following CFLAGS are for compiling the SWT OpenGL libraries.
-#
-CFLAGS = -O -Wall \
- -I./ \
- -I$(JAVA_HOME)/include \
- `pkg-config --cflags gtk+-2.0`
-
-all: make_gl make_xgtk
-
-make_gl: $(GL_DLL)
- $(LD) $(GL_LIB) -o $(GL_DLL) $(GL_OBJ)
-
-$(GL_DLL): $(GL_OBJ)
- $(CC) $(CFLAGS) -c glx.c
-
-make_xgtk: $(XGTK_DLL)
- $(LD) $(XGTK_LIB) -o $(XGTK_DLL) $(XGTK_OBJ)
-
-$(XGTK_DLL): $(XGTK_OBJ)
- $(CC) $(CFLAGS) -c xgtk.c
-
-clean:
- rm -f *.so *.o