Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVeronika Irvine2001-06-21 19:36:04 +0000
committerVeronika Irvine2001-06-21 19:36:04 +0000
commitb2da8a118902d606ae445a20741ea4a19a768aa3 (patch)
tree3feb1b8853b2aa9d266de6963168b58e0f5be9a3 /bundles/org.eclipse.swt/Eclipse SWT/motif/library
parenta59c668e2bb116fe865f27a79ad123166dc369a2 (diff)
downloadeclipse.platform.swt-b2da8a118902d606ae445a20741ea4a19a768aa3.tar.gz
eclipse.platform.swt-b2da8a118902d606ae445a20741ea4a19a768aa3.tar.xz
eclipse.platform.swt-b2da8a118902d606ae445a20741ea4a19a768aa3.zip
init correction
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/motif/library')
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/motif/library/make_solaris.mak69
1 files changed, 0 insertions, 69 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/motif/library/make_solaris.mak b/bundles/org.eclipse.swt/Eclipse SWT/motif/library/make_solaris.mak
deleted file mode 100755
index 89b698fa7b..0000000000
--- a/bundles/org.eclipse.swt/Eclipse SWT/motif/library/make_solaris.mak
+++ /dev/null
@@ -1,69 +0,0 @@
-# Makefile for creating SWT libraries on Solaris
-#
-# The following environment variables are assumed to be defined:
-#
-# MAJOR_VER - the major version number
-# MINOR_VER - the minor version number
-# BUILD_NUM - the build number
-
-DLL_VERSION=$(MAJOR_VER)$(MINOR_VER)
-
-
-# Define the installation directories for various products.
-# JAVA_HOME - Sun's version of Java (JDK2)
-# MOTIF_HOME - Motif includes and libraries
-JAVA_HOME = /tools/java1.3
-MOTIF_HOME = /usr/dt
-CDE_HOME = /usr/dt
-
-
-# Define the various DLL (shared) libraries to be made.
-
-SWT_PREFIX = swt
-SWT_DLL = lib$(SWT_PREFIX)$(DLL_VERSION).so
-SWT_OBJ = callback.o globals.o library.o structs.o swt.o
-SWT_LIB = -L$(MOTIF_HOME)/lib -L/usr/lib \
- -G -lXm -lXt -lX11 -lm
-
-CDE_PREFIX = swt-cde
-CDE_DLL = lib$(CDE_PREFIX)$(DLL_VERSION).so
-CDE_OBJ =
-CDE_LIB = -G -L$(CDE_HOME) -L. -l$(SWT_PREFIX)$(DLL_VERSION)
-
-
-#
-# The following CFLAGS are for compiling both the SWT library and the CDE
-# library.
-#
-# Note:
-# The flag -xarch=generic ensure the compiled modules will be targeted
-# for 32-bit architectures. If this flag is not
-#
-CFLAGS = -O -s \
- -xarch=generic \
- -DSWT_LIBRARY_MAJOR_VERSION=$(MAJOR_VER) \
- -DSWT_LIBRARY_MINOR_VERSION=$(MINOR_VER) \
- -DSOLARIS -DMOTIF -DCDE \
- -KPIC \
- -I./ \
- -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/solaris \
- -I$(MOTIF_HOME)/include \
- -I$(CDE_HOME)/include
-
-
-all: make_swt make_cde
-
-make_swt: $(SWT_DLL)
-
-$(SWT_DLL): $(SWT_OBJ)
- ld -o $@ $(SWT_OBJ) $(SWT_LIB)
-
-
-make_cde: $(CDE_DLL)
-
-$(CDE_DLL): $(CDE_OBJ)
- ld -o $@ $(CDE_OBJ) $(CDE_LIB)
-
-
-clean:
- rm -f $(SWT_OBJ) $(SWT_DLL) $(CDE_OBJ) $(CDE_DLL)

Back to the top