blob: ce8875e0e81c9ff856aea9f10a17476b7daeaf0c (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# ---- @OS_TYPE@/@ARCH_TYPE@ ----
# For cpu_accel compile we cannot have ansi
# (I dont have debugged why)
INCLUDES = $(all_includes)
noinst_LTLIBRARIES = libmmx.la
noinst_HEADERS =
kmpgincludedir = $(includedir)/$(THIS_LIB_NAME)/util/mmx
kmpginclude_HEADERS = mmx.h mmx_asm.h mm_accel.h
libmmx_la_SOURCES = cpu_accel.c mmx.c
AM_ASFLAGS = $(DEFS) $(DEFAULT_INCLUDES) $(all_includes)
|