~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/power/pm-graph/Makefile

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /tools/power/pm-graph/Makefile (Version linux-6.12-rc7) and /tools/power/pm-graph/Makefile (Version linux-4.13.16)


  1 # SPDX-License-Identifier: GPL-2.0             !!   1 PREFIX          ?= /usr
  2 #                                              !!   2 DESTDIR         ?=
  3 # Copyright (c) 2013, Intel Corporation.       << 
  4 #                                              << 
  5 # This program is free software; you can redis << 
  6 # under the terms and conditions of the GNU Ge << 
  7 # version 2, as published by the Free Software << 
  8 #                                              << 
  9 # This program is distributed in the hope it w << 
 10 # ANY WARRANTY; without even the implied warra << 
 11 # FITNESS FOR A PARTICULAR PURPOSE.  See the G << 
 12 # more details.                                << 
 13 #                                              << 
 14 # Authors:                                     << 
 15 #        Todd Brandt <todd.e.brandt@linux.intel << 
 16                                                << 
 17 # Prefix to the directories we're installing t << 
 18 DESTDIR ?=                                     << 
 19                                                << 
 20 # Directory definitions. These are default and << 
 21 # do not need to be changed. Please note that  << 
 22 # added in front of any of them                << 
 23                                                << 
 24 BINDIR ?=       /usr/bin                       << 
 25 MANDIR ?=       /usr/share/man                 << 
 26 LIBDIR ?=       /usr/lib                       << 
 27                                                << 
 28 # Toolchain: what tools do we use, and what op << 
 29 INSTALL = /usr/bin/install                     << 
 30 INSTALL_DATA  = ${INSTALL} -m 644              << 
 31                                                     3 
 32 all:                                                4 all:
 33         @echo "Nothing to build"                    5         @echo "Nothing to build"
 34                                                     6 
 35 install : uninstall                            !!   7 install :
 36         $(INSTALL) -d  $(DESTDIR)$(LIBDIR)/pm- !!   8         install -d  $(DESTDIR)$(PREFIX)/lib/pm-graph
 37         $(INSTALL) sleepgraph.py $(DESTDIR)$(L !!   9         install analyze_suspend.py $(DESTDIR)$(PREFIX)/lib/pm-graph
 38         $(INSTALL) bootgraph.py $(DESTDIR)$(LI !!  10         install analyze_boot.py $(DESTDIR)$(PREFIX)/lib/pm-graph
 39         $(INSTALL) -d  $(DESTDIR)$(LIBDIR)/pm- !!  11 
 40         $(INSTALL_DATA) config/cgskip.txt $(DE !!  12         ln -s $(DESTDIR)$(PREFIX)/lib/pm-graph/analyze_boot.py $(DESTDIR)$(PREFIX)/bin/bootgraph
 41         $(INSTALL_DATA) config/freeze-callgrap !!  13         ln -s $(DESTDIR)$(PREFIX)/lib/pm-graph/analyze_suspend.py $(DESTDIR)$(PREFIX)/bin/sleepgraph
 42         $(INSTALL_DATA) config/freeze.cfg $(DE !!  14 
 43         $(INSTALL_DATA) config/freeze-dev.cfg  !!  15         install -d  $(DESTDIR)$(PREFIX)/share/man/man8
 44         $(INSTALL_DATA) config/standby-callgra !!  16         install bootgraph.8 $(DESTDIR)$(PREFIX)/share/man/man8
 45         $(INSTALL_DATA) config/standby.cfg $(D !!  17         install sleepgraph.8 $(DESTDIR)$(PREFIX)/share/man/man8
 46         $(INSTALL_DATA) config/standby-dev.cfg << 
 47         $(INSTALL_DATA) config/suspend-callgra << 
 48         $(INSTALL_DATA) config/suspend.cfg $(D << 
 49         $(INSTALL_DATA) config/suspend-dev.cfg << 
 50         $(INSTALL_DATA) config/suspend-x2-proc << 
 51                                                << 
 52         $(INSTALL) -d  $(DESTDIR)$(BINDIR)     << 
 53         ln -s ../lib/pm-graph/bootgraph.py $(D << 
 54         ln -s ../lib/pm-graph/sleepgraph.py $( << 
 55                                                << 
 56         $(INSTALL) -d  $(DESTDIR)$(MANDIR)/man << 
 57         $(INSTALL) bootgraph.8 $(DESTDIR)$(MAN << 
 58         $(INSTALL) sleepgraph.8 $(DESTDIR)$(MA << 
 59                                                    18 
 60 uninstall :                                        19 uninstall :
 61         rm -f $(DESTDIR)$(MANDIR)/man8/bootgra !!  20         rm $(DESTDIR)$(PREFIX)/share/man/man8/bootgraph.8
 62         rm -f $(DESTDIR)$(MANDIR)/man8/sleepgr !!  21         rm $(DESTDIR)$(PREFIX)/share/man/man8/sleepgraph.8
 63                                                    22 
 64         rm -f $(DESTDIR)$(BINDIR)/bootgraph    !!  23         rm $(DESTDIR)$(PREFIX)/bin/bootgraph
 65         rm -f $(DESTDIR)$(BINDIR)/sleepgraph   !!  24         rm $(DESTDIR)$(PREFIX)/bin/sleepgraph
 66                                                    25 
 67         rm -f $(DESTDIR)$(LIBDIR)/pm-graph/con !!  26         rm $(DESTDIR)$(PREFIX)/lib/pm-graph/analyze_boot.py
 68         if [ -d $(DESTDIR)$(LIBDIR)/pm-graph/c !!  27         rm $(DESTDIR)$(PREFIX)/lib/pm-graph/analyze_suspend.py
 69                 rmdir $(DESTDIR)$(LIBDIR)/pm-g !!  28         rmdir $(DESTDIR)$(PREFIX)/lib/pm-graph
 70         fi;                                    << 
 71         rm -f $(DESTDIR)$(LIBDIR)/pm-graph/__p << 
 72         if [ -d $(DESTDIR)$(LIBDIR)/pm-graph/_ << 
 73                 rmdir $(DESTDIR)$(LIBDIR)/pm-g << 
 74         fi;                                    << 
 75         rm -f $(DESTDIR)$(LIBDIR)/pm-graph/*   << 
 76         if [ -d $(DESTDIR)$(LIBDIR)/pm-graph ] << 
 77                 rmdir $(DESTDIR)$(LIBDIR)/pm-g << 
 78         fi;                                    << 
 79                                                << 
 80 help:                                          << 
 81         @echo  'Building targets:'             << 
 82         @echo  '  all             - Nothing to << 
 83         @echo  '  install         - Install th << 
 84         @echo  '  uninstall       - Remove ins << 
 85                                                << 
 86 .PHONY: all install uninstall help             << 
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php