Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 647 Bytes

Makefile.am

File metadata and controls

33 lines (24 loc) · 647 Bytes
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
###########################################################################
#
# Some consistent rules for building asm files:
STRIP_FPIC = sh $(top_srcdir)/strip_fPIC.sh
SUFFIXES = .asm
.asm.lo:
$(LIBTOOL) --mode=compile $(STRIP_FPIC) $(NASM) @NASMFLAGS@ $<
###########################################################################
# The hermes library target
noinst_LTLIBRARIES = libhermes.la
libhermes_la_SOURCES = $(PORTABLE_SRCS)
# 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