Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 691 Bytes

Makefile.am

File metadata and controls

35 lines (25 loc) · 691 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
###########################################################################
#
# 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) -t -D __FLAT__ -D __NOU__ @NASMFLAGS@ $< -o $*.o
###########################################################################
# The cpuinfo library target
noinst_LTLIBRARIES = libcpuinfo.la
if HAVE_NASM
ARCH_SRCS = \
_cpuinfo.asm \
_pcihelp.asm
else
ARCH_SRCS =
endif
COMMON_SRCS = \
Nov 18, 2003
Nov 18, 2003
26
27
cpuinfo.h \
gcpuinfo.c \
28
29
30
31
32
33
34
SDL_cpuinfo.c
libcpuinfo_la_SOURCES = $(ARCH_SRCS) $(COMMON_SRCS)
EXTRA_DIST = \
COPYING.LIB \
README