Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 750 Bytes

Makefile.am

File metadata and controls

39 lines (30 loc) · 750 Bytes
 
Apr 26, 2001
Apr 26, 2001
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
###########################################################################
#
# 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)
Nov 2, 2001
Nov 2, 2001
18
19
20
21
22
23
am_libhermes_la_OBJECTS = \
mmx_main.lo \
mmxp2_32.lo \
x86_main.lo \
x86p_16.lo \
x86p_32.lo
Apr 26, 2001
Apr 26, 2001
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# 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