mirror of
https://github.com/torvalds/linux.git
synced 2026-05-02 21:42:42 -04:00
Reference the source directly, don't create symlinks. Signed-off-by: WANG Cong <amwang@redhat.com> Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
15 lines
278 B
Makefile
15 lines
278 B
Makefile
default: all
|
|
|
|
centrino-decode: ../i386/centrino-decode.c
|
|
$(CC) $(CFLAGS) -o $@ $<
|
|
|
|
powernow-k8-decode: ../i386/powernow-k8-decode.c
|
|
$(CC) $(CFLAGS) -o $@ $<
|
|
|
|
all: centrino-decode powernow-k8-decode
|
|
|
|
clean:
|
|
rm -rf centrino-decode powernow-k8-decode
|
|
|
|
.PHONY: all default clean
|