Mercurial > sdl-ios-xcode
comparison src/cpuinfo/Makefile.am @ 740:e70f80e98f60
Actually hook the cpuinfo module into the library. :)
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 18 Nov 2003 02:16:57 +0000 |
parents | 22dbf364c017 |
children | 528a52626680 |
comparison
equal
deleted
inserted
replaced
739:22dbf364c017 | 740:e70f80e98f60 |
---|---|
14 # The cpuinfo library target | 14 # The cpuinfo library target |
15 noinst_LTLIBRARIES = libcpuinfo.la | 15 noinst_LTLIBRARIES = libcpuinfo.la |
16 | 16 |
17 if HAVE_NASM | 17 if HAVE_NASM |
18 ARCH_SRCS = \ | 18 ARCH_SRCS = \ |
19 gcpuinfo.c \ | |
20 _cpuinfo.asm \ | 19 _cpuinfo.asm \ |
21 _pcihelp.asm | 20 _pcihelp.asm |
22 else | 21 else |
23 ARCH_SRCS = | 22 ARCH_SRCS = |
24 endif | 23 endif |
25 | 24 |
26 COMMON_SRCS = \ | 25 COMMON_SRCS = \ |
26 cpuinfo.h \ | |
27 gcpuinfo.c \ | |
27 SDL_cpuinfo.c | 28 SDL_cpuinfo.c |
28 | 29 |
29 libcpuinfo_la_SOURCES = $(ARCH_SRCS) $(COMMON_SRCS) | 30 libcpuinfo_la_SOURCES = $(ARCH_SRCS) $(COMMON_SRCS) |
30 | 31 |
31 EXTRA_DIST = \ | 32 EXTRA_DIST = \ |