Initial commit
This commit is contained in:
commit
169c65d57e
51358 changed files with 23120455 additions and 0 deletions
18
tools/power/acpi/Makefile
Normal file
18
tools/power/acpi/Makefile
Normal file
|
@ -0,0 +1,18 @@
|
|||
PROG= acpidump
|
||||
SRCS= acpidump.c
|
||||
KERNEL_INCLUDE := ../../../include
|
||||
CFLAGS += -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Os -s -D_LINUX -DDEFINE_ALTERNATE_TYPES -I$(KERNEL_INCLUDE)
|
||||
|
||||
all: acpidump
|
||||
$(PROG) : $(SRCS)
|
||||
$(CC) $(CFLAGS) $(SRCS) -o $(PROG)
|
||||
|
||||
CLEANFILES= $(PROG)
|
||||
|
||||
clean :
|
||||
rm -f $(CLEANFILES) $(patsubst %.c,%.o, $(SRCS)) *~
|
||||
|
||||
install :
|
||||
install acpidump /usr/sbin/acpidump
|
||||
install acpidump.8 /usr/share/man/man8
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue