Mercurial > sdl-ios-xcode
comparison src/hermes/Makefile.am @ 0:74212992fb08
Initial revision
author | Sam Lantinga <slouken@lokigames.com> |
---|---|
date | Thu, 26 Apr 2001 16:45:43 +0000 |
parents | |
children | 2d1753bc178a |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:74212992fb08 |
---|---|
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 |