Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile.am « x86 « src - github.com/neutrinolabs/librfxcodec.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2d099e5f49144e7e411eab2afc0d890739d4508f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
X86_ASM = \
  cpuid_x86.asm \
  rfxcodec_encode_dwt_shift_x86_sse2.asm \
  rfxcodec_encode_dwt_shift_x86_sse41.asm

AM_CPPFLAGS = \
  -I$(top_srcdir)/include \
  -I$(top_srcdir)/src

noinst_LTLIBRARIES = librfxencode-x86.la

librfxencode_x86_la_SOURCES = \
  funcs_x86.h \
  rfxencode_tile_x86.c \
  $(X86_ASM)

nasm_verbose = $(nasm_verbose_@AM_V@)
nasm_verbose_ = $(nasm_verbose_@AM_DEFAULT_V@)
nasm_verbose_0 = @echo "  NASM     $@";

.asm.lo:
	$(nasm_verbose)$(LIBTOOL) $(AM_V_lt) --mode=compile \
	  $(top_srcdir)/src/nasm_lt.sh $(NASM) $(NAFLAGS) \
	  -I$(top_srcdir)/src $< -o $@