Commit ea514d2e authored by Marc G. Fournier's avatar Marc G. Fournier

Fix for missing tas.s under sparc_solaris

Reported by:  Shiby Thomas <sthomas@cise.ufl.edu>
parent c18ed2f5
#-------------------------------------------------------------------------
#
# Makefile--
# Makefile for port/sparc_solaris
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/port/sparc_solaris/Attic/Makefile,v 1.5 1997/12/20 00:26:18 scrappy Exp $
#
#-------------------------------------------------------------------------
SRCDIR = ../../..
include ../../../Makefile.global
INCLUDE_OPT = -I..
CFLAGS+=$(INCLUDE_OPT)
OBJS = tas.o
all: SUBSYS.o
SUBSYS.o: $(OBJS)
$(LD) -r -o SUBSYS.o $(OBJS)
depend dep:
$(CC) -MM $(INCLUDE_OPT) *.c >depend
clean:
rm -f SUBSYS.o $(OBJS)
ifeq (depend,$(wildcard depend))
include depend
endif
!! !!
!! $Header: /cvsroot/pgsql/src/backend/port/sparc_solaris/Attic/tas.s,v 1.1.1.1 1996/07/09 06:21:45 scrappy Exp $ !! $Header: /cvsroot/pgsql/src/backend/port/tas/Attic/sparc_solaris.s,v 1.1 1998/02/03 02:07:15 scrappy Exp $
!! !!
!! this would be a piece of inlined assembler but it appears !! this would be a piece of inlined assembler but it appears
!! to be easier to just write the assembler than to try to !! to be easier to just write the assembler than to try to
......
This diff is collapsed.
...@@ -6,12 +6,15 @@ AC_CANONICAL_HOST ...@@ -6,12 +6,15 @@ AC_CANONICAL_HOST
case "$host_os" in case "$host_os" in
solaris*) solaris*)
case "$host_cpu" in case "$host_cpu" in
sparc) os=sparc_solaris ;; sparc) os=sparc_solaris
AC_LINK_FILES(backend/port/tas/sparc_solaris.s, backend/port/tas.s)
TAS=tas.o
AC_SUBST(TAS) ;;
i386) i386)
os=i386_solaris os=i386_solaris
AC_LINK_FILES(backend/port/tas/i386_solaris.s, backend/port/tas.s) AC_LINK_FILES(backend/port/tas/i386_solaris.s, backend/port/tas.s)
TAS=tas.o TAS=tas.o
AC_SUBST(TAS) ;; AC_SUBST(TAS) ;;
esac ;; esac ;;
sunos*) os=sunos4 ;; sunos*) os=sunos4 ;;
aux*) os=aux ;; aux*) os=aux ;;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment