Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 565466 | Differences between
and this patch

Collapse All | Expand All

(-)file_not_specified_in_diff (-6 / +6 lines)
Line  Link Here
0
-- a/Makefile
0
++ b/Makefile
Lines 17-29 ccflags-y = -Wall Link Here
17
17
18
all: i8kctl probe_i8k_calls_time
18
all: i8kctl probe_i8k_calls_time
19
19
20
i8kctl: i8kctl.c i8kctl.o
20
i8kctl: i8kctl.c
21
	gcc -Wall i8kctl.c -o i8kctl
21
	$(CC) -Wall ${CFLAGS} -o i8kctl i8kctl.c
22
22
23
probe_i8k_calls_time: probe_i8k_calls_time.c
23
probe_i8k_calls_time: probe_i8k_calls_time.c
24
	gcc -Wall -c -g -DLIB i8kctl.c
24
	$(CC) -Wall ${CFLAGS} -c -DLIB i8kctl.c
25
	gcc -Wall -c -g -DLIB probe_i8k_calls_time.c
25
	$(CC) -Wall ${CFLAGS} -c -DLIB probe_i8k_calls_time.c
26
	gcc -o probe_i8k_calls_time i8kctl.o probe_i8k_calls_time.o
26
	$(CC) -Wall ${CFLAGS} ${LDFLAGS} -o probe_i8k_calls_time i8kctl.o probe_i8k_calls_time.o
27
27
28
i8k:
28
i8k:
29
	make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
29
	make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules

Return to bug 565466