1 # SPDX-License-Identifier: GPL-2.0
3 ifeq ("$(origin O)", "command line")
10 INSTALL
= /usr
/bin
/install
15 $(OUTPUT
)centrino-decode
: ..
/i386
/centrino-decode.c
16 $(CC
) $(CFLAGS
) -o
$@
$<
18 $(OUTPUT
)powernow-k8-decode
: ..
/i386
/powernow-k8-decode.c
19 $(CC
) $(CFLAGS
) -o
$@
$<
21 all: $(OUTPUT
)centrino-decode
$(OUTPUT
)powernow-k8-decode
24 rm -rf
$(OUTPUT
)centrino-decode
$(OUTPUT
)powernow-k8-decode
27 $(INSTALL
) -d
$(DESTDIR
)${bindir}
28 $(INSTALL
) $(OUTPUT
)centrino-decode
$(DESTDIR
)${bindir}
29 $(INSTALL
) $(OUTPUT
)powernow-k8-decode
$(DESTDIR
)${bindir}
31 .PHONY
: all default
clean install