Mercurial > sdl-ios-xcode
view src/cpuinfo/Makefile.am @ 744:f601f5c05045
Switched data files to binary format
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 24 Nov 2003 00:21:24 +0000 |
parents | 528a52626680 |
children | 71ee03909f42 |
line wrap: on
line source
########################################################################### # # 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__ @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 = \ cpuinfo.h \ gcpuinfo.c \ SDL_cpuinfo.c libcpuinfo_la_SOURCES = $(ARCH_SRCS) $(COMMON_SRCS) EXTRA_DIST = \ COPYING.LIB \ README