mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-10-29 23:28:52 +01:00
Fixed MTP to work with TWRP
This commit is contained in:
commit
f6dfaef42e
50820 changed files with 20846062 additions and 0 deletions
41
tools/power/cpupower/debug/i386/Makefile
Normal file
41
tools/power/cpupower/debug/i386/Makefile
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
OUTPUT=./
|
||||
ifeq ("$(origin O)", "command line")
|
||||
OUTPUT := $(O)/
|
||||
endif
|
||||
|
||||
DESTDIR =
|
||||
bindir = /usr/bin
|
||||
|
||||
INSTALL = /usr/bin/install
|
||||
|
||||
|
||||
default: all
|
||||
|
||||
$(OUTPUT)centrino-decode: centrino-decode.c
|
||||
$(CC) $(CFLAGS) -o $@ centrino-decode.c
|
||||
|
||||
$(OUTPUT)dump_psb: dump_psb.c
|
||||
$(CC) $(CFLAGS) -o $@ dump_psb.c
|
||||
|
||||
$(OUTPUT)intel_gsic: intel_gsic.c
|
||||
$(CC) $(CFLAGS) -o $@ -llrmi intel_gsic.c
|
||||
|
||||
$(OUTPUT)powernow-k8-decode: powernow-k8-decode.c
|
||||
$(CC) $(CFLAGS) -o $@ powernow-k8-decode.c
|
||||
|
||||
all: $(OUTPUT)centrino-decode $(OUTPUT)dump_psb $(OUTPUT)intel_gsic $(OUTPUT)powernow-k8-decode
|
||||
|
||||
clean:
|
||||
rm -rf $(OUTPUT)centrino-decode
|
||||
rm -rf $(OUTPUT)dump_psb
|
||||
rm -rf $(OUTPUT)intel_gsic
|
||||
rm -rf $(OUTPUT)powernow-k8-decode
|
||||
|
||||
install:
|
||||
$(INSTALL) -d $(DESTDIR)${bindir}
|
||||
$(INSTALL) $(OUTPUT)centrino-decode $(DESTDIR)${bindir}
|
||||
$(INSTALL) $(OUTPUT)powernow-k8-decode $(DESTDIR)${bindir}
|
||||
$(INSTALL) $(OUTPUT)dump_psb $(DESTDIR)${bindir}
|
||||
$(INSTALL) $(OUTPUT)intel_gsic $(DESTDIR)${bindir}
|
||||
|
||||
.PHONY: all default clean install
|
||||
Loading…
Add table
Add a link
Reference in a new issue