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

TOMOYO Linux Cross Reference
Linux/tools/verification/rv/Makefile

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ 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.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /tools/verification/rv/Makefile (Version linux-6.11.5) and /tools/verification/rv/Makefile (Version linux-4.15.18)


  1 # SPDX-License-Identifier: GPL-2.0-only           
  2                                                   
  3 ifeq ($(srctree),)                                
  4   srctree       := $(patsubst %/,%,$(dir $(CUR    
  5   srctree       := $(patsubst %/,%,$(dir $(src    
  6   srctree       := $(patsubst %/,%,$(dir $(src    
  7 endif                                             
  8                                                   
  9 include $(srctree)/tools/scripts/Makefile.incl    
 10                                                   
 11 # O is an alias for OUTPUT                        
 12 OUTPUT          := $(O)                           
 13                                                   
 14 ifeq ($(OUTPUT),)                                 
 15   OUTPUT       := $(CURDIR)/                      
 16 else                                              
 17   # subdir is used by the ../Makefile in $(cal    
 18   ifneq ($(subdir),)                              
 19     OUTPUT        := $(OUTPUT)/$(subdir)          
 20   endif                                           
 21 endif                                             
 22                                                   
 23 ifneq ($(patsubst %/,,$(lastword $(OUTPUT))),)    
 24   OUTPUT := $(OUTPUT)/                            
 25 endif                                             
 26                                                   
 27 RV              := $(OUTPUT)rv                    
 28 RV_IN           := $(RV)-in.o                     
 29                                                   
 30 VERSION         := $(shell sh -c "make -sC ../    
 31 DOCSRC          := ../../../Documentation/tool    
 32                                                   
 33 FEATURE_TESTS   := libtraceevent                  
 34 FEATURE_TESTS   += libtracefs                     
 35 FEATURE_DISPLAY := libtraceevent                  
 36 FEATURE_DISPLAY += libtracefs                     
 37                                                   
 38 ifeq ($(V),1)                                     
 39   Q             =                                 
 40 else                                              
 41   Q             = @                               
 42 endif                                             
 43                                                   
 44 all: $(RV)                                        
 45                                                   
 46 include $(srctree)/tools/build/Makefile.includ    
 47 include Makefile.rv                               
 48                                                   
 49 # check for dependencies only on required targ    
 50 NON_CONFIG_TARGETS := clean install doc doc_cl    
 51                                                   
 52 config          := 1                              
 53 ifdef MAKECMDGOALS                                
 54   ifeq ($(filter-out $(NON_CONFIG_TARGETS),$(M    
 55   config        := 0                              
 56 endif                                             
 57 endif                                             
 58                                                   
 59 ifeq ($(config),1)                                
 60   include $(srctree)/tools/build/Makefile.feat    
 61   include Makefile.config                         
 62 endif                                             
 63                                                   
 64 CFLAGS          += $(INCLUDES) $(LIB_INCLUDES)    
 65                                                   
 66 export CFLAGS OUTPUT srctree                      
 67                                                   
 68 $(RV): $(RV_IN)                                   
 69         $(QUIET_LINK)$(CC) $(LDFLAGS) -o $(RV)    
 70                                                   
 71 static: $(RV_IN)                                  
 72         $(eval LDFLAGS += -static)                
 73         $(QUIET_LINK)$(CC) $(LDFLAGS) -o $(RV)    
 74                                                   
 75 rv.%: fixdep FORCE                                
 76         make -f $(srctree)/tools/build/Makefil    
 77                                                   
 78 $(RV_IN): fixdep FORCE                            
 79         make $(build)=rv                          
 80                                                   
 81 clean: doc_clean fixdep-clean                     
 82         $(call QUIET_CLEAN, rv)                   
 83         $(Q)find . -name '*.o' -delete -o -nam    
 84         $(Q)rm -f rv rv-static fixdep FEATURE-    
 85         $(Q)rm -rf feature                        
 86                                                   
 87 .PHONY: FORCE clean                               
                                                      

~ [ 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