view src/hermes/Makefile.am @ 1142:c7376efecdb5

Date: Fri, 2 Sep 2005 21:56:50 -0400 From: Mike Frysinger Subject: [SDL] [patch] make sure autotools worked the current autogen.sh runs a bunch of autotools without actually checking the results ... find attached a patch to add some simple sanity checks
author Sam Lantinga <slouken@libsdl.org>
date Sun, 11 Sep 2005 04:15:44 +0000
parents dac996d69abb
children
line wrap: on
line source

###########################################################################
#
# Some consistent rules for building asm files:

STRIP_FPIC = sh $(top_srcdir)/strip_fPIC.sh

SUFFIXES = .asm

.asm.lo:
	$(LIBTOOL) --tag=CC --mode=compile $(STRIP_FPIC) $(NASM) @NASMFLAGS@ $< -o $*.o

###########################################################################

# The hermes library target
noinst_LTLIBRARIES = libhermes.la

libhermes_la_SOURCES = $(PORTABLE_SRCS)
am_libhermes_la_OBJECTS =	\
	mmx_main.lo		\
	mmxp2_32.lo		\
	x86_main.lo		\
	x86p_16.lo		\
	x86p_32.lo

# The hermes library sources
PORTABLE_SRCS = 		\
	mmx_main.asm		\
	mmxp2_32.asm		\
	x86_main.asm		\
	x86p_16.asm		\
	x86p_32.asm		\
	\
	HeadMMX.h		\
	HeadX86.h

EXTRA_DIST =			\
	COPYING.LIB		\
	README