summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2001-02-22 16:15:08 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2001-02-22 16:15:08 +0000
commit556b1a59b6d3bd10916db4849515c8e173411186 (patch)
tree8fbea662fa72736e5ca0bc3b9d5b915a15f34c67
parentc6811dc6092d0c0834c6253e660c10ce4c5f6e3f (diff)
SPARC osl_[increment|decrement]InterlockedCount for sparcV8 and sparcV9 (sparcv8plus)
-rw-r--r--sal/osl/unx/makefile.mk27
1 files changed, 19 insertions, 8 deletions
diff --git a/sal/osl/unx/makefile.mk b/sal/osl/unx/makefile.mk
index 9a0b50f8c71e..cdd3fdbf505a 100644
--- a/sal/osl/unx/makefile.mk
+++ b/sal/osl/unx/makefile.mk
@@ -2,9 +2,9 @@
#
# $RCSfile: makefile.mk,v $
#
-# $Revision: 1.4 $
+# $Revision: 1.5 $
#
-# last change: $Author: hr $ $Date: 2001-02-22 17:03:43 $
+# last change: $Author: hr $ $Date: 2001-02-22 17:15:08 $
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
@@ -122,6 +122,15 @@ OBJFILES= $(OBJ)$/conditn.obj \
$(OBJ)$/util.obj
#.ENDIF
+.IF "$(OS)$(CPU)"=="SOLARISS"
+SLOFILES+= \
+ $(SLO)$/interlck_sparc_cas.obj \
+ $(SLO)$/interlck_sparc_swap.obj
+OBJFILES+= \
+ $(OBJ)$/interlck_sparc_cas.obj \
+ $(OBJ)$/interlck_sparc_swap.obj
+.ENDIF
+
# --- Targets ------------------------------------------------------
.IF "$(COM)"=="C50"
@@ -131,10 +140,12 @@ APP1STDLIBS+=-lC
.INCLUDE : target.mk
.IF "$(OS)$(CPU)"=="SOLARISS"
-$(SLO)$/interlck.obj: asm/interlck_sparc_cas.s
- as -q -K PIC -o $(SLO)$/interlck.o asm/interlck_sparc_cas.s ; touch $(SLO)$/interlck.obj
-
-$(OBJ)$/interlck.obj: asm/interlck_sparc_cas.s
- as -q -o $(OBJ)$/interlck.o asm/interlck_sparc_cas.s ; touch $(OBJ)$/interlck.obj
-
+$(SLO)$/interlck_sparc_cas.obj: asm/interlck_sparc_cas.s
+ as -q -K PIC -o $(SLO)$/interlck_sparc_cas.o asm/interlck_sparc_cas.s ; touch $(SLO)$/interlck_sparc_cas.obj
+$(OBJ)$/interlck_sparc_cas.obj: asm/interlck_sparc_cas.s
+ as -q -o $(OBJ)$/interlck_sparc_cas.o asm/interlck_sparc_cas.s ; touch $(OBJ)$/interlck_sparc_cas.obj
+$(SLO)$/interlck_sparc_swap.obj: asm/interlck_sparc_swap.s
+ as -q -K PIC -o $(SLO)$/interlck_sparc_swap.o asm/interlck_sparc_swap.s ; touch $(SLO)$/interlck_sparc_swap.obj
+$(OBJ)$/interlck_sparc_swap.obj: asm/interlck_sparc_swap.s
+ as -q -o $(OBJ)$/interlck_sparc_swap.o asm/interlck_sparc_swap.s ; touch $(OBJ)$/interlck_sparc_swap.obj
.ENDIF