hc
2023-11-30 6c9be420e167ee7ce45c0309586f09ddab28ac15
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# SPDX-License-Identifier: GPL-2.0
PREFIX        ?= /usr
DESTDIR        ?=
 
all:
   @echo "Nothing to build"
 
install : uninstall
   install -d  $(DESTDIR)$(PREFIX)/lib/pm-graph
   install sleepgraph.py $(DESTDIR)$(PREFIX)/lib/pm-graph
   install bootgraph.py $(DESTDIR)$(PREFIX)/lib/pm-graph
   install -d  $(DESTDIR)$(PREFIX)/lib/pm-graph/config
   install -m 644 config/cgskip.txt $(DESTDIR)$(PREFIX)/lib/pm-graph/config
   install -m 644 config/freeze-callgraph.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
   install -m 644 config/freeze.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
   install -m 644 config/freeze-dev.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
   install -m 644 config/standby-callgraph.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
   install -m 644 config/standby.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
   install -m 644 config/standby-dev.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
   install -m 644 config/suspend-callgraph.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
   install -m 644 config/suspend.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
   install -m 644 config/suspend-dev.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
   install -m 644 config/suspend-x2-proc.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
 
   install -d  $(DESTDIR)$(PREFIX)/bin
   ln -s $(DESTDIR)$(PREFIX)/lib/pm-graph/bootgraph.py $(DESTDIR)$(PREFIX)/bin/bootgraph
   ln -s $(DESTDIR)$(PREFIX)/lib/pm-graph/sleepgraph.py $(DESTDIR)$(PREFIX)/bin/sleepgraph
 
   install -d  $(DESTDIR)$(PREFIX)/share/man/man8
   install bootgraph.8 $(DESTDIR)$(PREFIX)/share/man/man8
   install sleepgraph.8 $(DESTDIR)$(PREFIX)/share/man/man8
 
uninstall :
   rm -f $(DESTDIR)$(PREFIX)/share/man/man8/bootgraph.8
   rm -f $(DESTDIR)$(PREFIX)/share/man/man8/sleepgraph.8
 
   rm -f $(DESTDIR)$(PREFIX)/bin/bootgraph
   rm -f $(DESTDIR)$(PREFIX)/bin/sleepgraph
 
   rm -f $(DESTDIR)$(PREFIX)/lib/pm-graph/config/*
   if [ -d $(DESTDIR)$(PREFIX)/lib/pm-graph/config ] ; then \
       rmdir $(DESTDIR)$(PREFIX)/lib/pm-graph/config; \
   fi;
   rm -f $(DESTDIR)$(PREFIX)/lib/pm-graph/*
   if [ -d $(DESTDIR)$(PREFIX)/lib/pm-graph ] ; then \
       rmdir $(DESTDIR)$(PREFIX)/lib/pm-graph; \
   fi;