0
|
1 ###########################################################################
|
|
2 #
|
|
3 # Some consistent rules for building asm files:
|
|
4
|
|
5 STRIP_FPIC = sh $(top_srcdir)/strip_fPIC.sh
|
|
6
|
|
7 SUFFIXES = .asm
|
|
8
|
|
9 .asm.lo:
|
|
10 $(LIBTOOL) --mode=compile $(STRIP_FPIC) $(NASM) @NASMFLAGS@ $<
|
|
11
|
|
12 ###########################################################################
|
|
13
|
|
14 # The hermes library target
|
|
15 noinst_LTLIBRARIES = libhermes.la
|
|
16
|
|
17 libhermes_la_SOURCES = $(PORTABLE_SRCS)
|
|
18
|
|
19 # The hermes library sources
|
|
20 PORTABLE_SRCS = \
|
|
21 mmx_main.asm \
|
|
22 mmxp2_32.asm \
|
|
23 x86_main.asm \
|
|
24 x86p_16.asm \
|
|
25 x86p_32.asm \
|
|
26 \
|
|
27 HeadMMX.h \
|
|
28 HeadX86.h
|
|
29
|
|
30 EXTRA_DIST = \
|
|
31 COPYING.LIB \
|
|
32 README
|
|
33
|