blob: d49a59b1e241f8436f78c548e0a364b501ccf856 (
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
|
noinst_PROGRAMS = intel_reg_dumper intel_idle intel_stepping intel_hotplug
intel_reg_dumper_SOURCES = \
main.c \
reg_dumper.h \
xprintf.c \
../i830_debug.c
intel_idle_SOURCES = \
idle.c \
reg_dumper.h \
xprintf.c \
../i830_debug.c
intel_hotplug_SOURCES = \
hotplug.c \
reg_dumper.h \
xprintf.c \
../i830_debug.c
intel_stepping_SOURCES = \
stepping.c
intel_hotplug_LDADD = $(PCIACCESS_LIBS)
intel_reg_dumper_LDADD = $(PCIACCESS_LIBS)
intel_idle_LDADD = $(PCIACCESS_LIBS)
intel_stepping_LDADD = $(PCIACCESS_LIBS)
AM_CFLAGS = $(PCIACCESS_CFLAGS) $(WARN_CFLAGS) \
-I$(srcdir)/.. -DREG_DUMPER
|