blob: c1fae4281e3240d6de43318c76456b79a8375644 [file] [log] [blame]
#*******************************************************************************
# Copyright (c) 2000, 2004 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
# Kevin Cornell (Rational Software Corporation)
# Sridhar Bidigalu (ICS)
#*******************************************************************************
# Makefile for SWT libraries on HP-UX PA_RISC architechture
include make_common.mak
SWT_VERSION=$(maj_ver)$(min_ver)
# Define the installation directories for various products.
# JAVA_HOME - Sun's version of Java (JDK2)
# MOTIF_HOME - Motif includes and libraries
# CDE_HOME - CDE includes and libraries
JAVA_HOME = /opt/jdk14101
MOTIF_HOME = /usr
CDE_HOME = /usr/dt
# Define the various DLL (shared) libraries to be made.
SWT_PREFIX = swt
WS_PREFIX = motif
SWT_LIB = lib$(SWT_PREFIX)-$(WS_PREFIX)-$(SWT_VERSION).sl
SWT_OBJS = swt.o callback.o os.o os_structs.o os_custom.o os_stats.o
SWT_LIBS = -L$(MOTIF_HOME)/lib -L/usr/lib \
-G -lXm -lXt -lX11 -lc -ldld -lm -lXp -lXtst
CDE_PREFIX = swt-cde
CDE_LIB = lib$(CDE_PREFIX)-$(WS_PREFIX)-$(SWT_VERSION).sl
CDE_OBJS = cde.o
CDE_LIBS = -G -L$(CDE_HOME)/lib -lDtSvc
#
# The following CFLAGS are for compiling both the SWT library and the CDE
# library.
#
CFLAGS = -Ae +z \
-DSWT_VERSION=$(SWT_VERSION) \
-DNO_XINERAMA_EXTENSIONS \
-D_HPUX -D_POSIX_C_SOURCE=199506L -DMOTIF -DCDE \
-I./ \
-I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/hp-ux \
-I$(MOTIF_HOME)/include \
-I$(CDE_HOME)/include \
+DAportable
all: make_swt make_cde
make_swt: $(SWT_LIB)
$(SWT_LIB): $(SWT_OBJS)
ld +nodefaultrpath -b -z -o $@ $(SWT_OBJS) $(SWT_LIBS)
make_cde: $(CDE_LIB)
$(CDE_LIB): $(CDE_OBJS)
ld +nodefaultrpath -b -z -o $@ $(CDE_OBJS) $(CDE_LIBS)
clean:
rm -f *.sl *.o