Commit 4c5eb2c2 authored by Bruce Momjian's avatar Bruce Momjian

Modify Solaris compiler build rules to use the cpp preprocessor, the the

x86 file.
parent 83b692d9
......@@ -13,7 +13,7 @@
# be converted to Method 2.
#
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/port/Makefile,v 1.22 2006/01/05 03:01:35 momjian Exp $
# $PostgreSQL: pgsql/src/backend/port/Makefile,v 1.23 2006/04/28 17:09:16 momjian Exp $
#
#-------------------------------------------------------------------------
......@@ -48,14 +48,20 @@ win32.dir:
$(MAKE) -C win32 all
tas.o: tas.s
ifeq ($(PORTNAME), solaris)
# preprocess assembler file with cpp, used by x86
$(CC) $(CFLAGS) -c -P $<
mv $*.i $*_cpp.s
$(CC) $(CFLAGS) -c $*_cpp.s -o $@
else
$(CC) $(CFLAGS) -c $<
endif
# IPC test program
ipc_test: ipc_test.o pg_sema.o pg_shmem.o
$(CC) $(CFLAGS) $(LDFLAGS) $(export_dynamic) $^ $(LIBS) -o $@
distclean clean:
rm -f SUBSYS.o $(OBJS) ipc_test ipc_test.o
rm -f SUBSYS.o $(OBJS) ipc_test ipc_test.o tas_cpp.s
$(MAKE) -C darwin clean
$(MAKE) -C win32 clean
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