===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
openttd-openmsx-0.3.1/scripts/Makefile.common-25-	$(_V)-rm -rf $(SRC_DIR)/$(FILENAME_STUB) $(DIR_NAME_SRC) $(DIR_NAME)
openttd-openmsx-0.3.1/scripts/Makefile.common:26:	$(_V)for i in `ls -d $(DIR_BASE)*`; do if [ "$$i" != "$(MD5_FILENAME)" ]; then rm $$i; fi; done
openttd-openmsx-0.3.1/scripts/Makefile.common-27-
##############################################
openttd-openmsx-0.3.1/scripts/Makefile.common-67-#	$(_E) "Repository files:             $(REPO_FILES)"
openttd-openmsx-0.3.1/scripts/Makefile.common:68:#	$(_E) "Bundle source files:          `for i in $(REPO_FILES); do for j in $(MAIN_DIRS); do echo "$$i" | grep "$$j"; done; done;`"
openttd-openmsx-0.3.1/scripts/Makefile.common-69-ifeq ($(OSTYPE),Linux)
##############################################
openttd-openmsx-0.3.1/scripts/Makefile.common-140-ifeq ($(PROJECT_TYPE),CATCODEC)			# BASE SOUND: special file format
openttd-openmsx-0.3.1/scripts/Makefile.common:141:	$(_V) echo "$(SRC_DIR)/$(MAIN_FILENAME_SRC): "`cat $(SRC_DIR)/$(MAIN_FILENAME_SRC) | $(AWK) 'BEGIN { FS = " " } ; { print $$1 }' | grep 'wav' | grep -v '^//' | sed 's/"//g' | sort | uniq` > $(MAKEFILE_DEP)
openttd-openmsx-0.3.1/scripts/Makefile.common-142-else # NFO and NML projects
openttd-openmsx-0.3.1/scripts/Makefile.common:143:	$(_V) for i in `$(REPO_FILES_CMD) | grep -E '($(FILE_SRC_RE)grf)$$'`; do echo "$$i: "`for j in $(FILE_SRC_EXTENSIONS) $(FILE_INC_EXTENSIONS); do cat $$i |  grep -v '^//' | grep -o "[a-zA-Z0-9/_.-]\+\.$$j" | sort | uniq; done` | grep -v -E ": $$" ; done | sort | uniq | $(AWK) '{ print $$0"\n\t$$(_V) touch $$@" }' > $(MAKEFILE_DEP)
openttd-openmsx-0.3.1/scripts/Makefile.common-144-	$(_V) for i in `ls Makefile* scripts/* | grep -v Makefile.dep`; do echo "Makefile.dep: $$i"; done >> $(MAKEFILE_DEP)
##############################################
openttd-openmsx-0.3.1/scripts/Makefile.common-148-endif
openttd-openmsx-0.3.1/scripts/Makefile.common:149:	$(_V) [ -e $(REV_FILENAME) ] && [ "`cat $(REV_FILENAME)`" = "$(VERSION_STRING)" ] || echo "$(VERSION_STRING)" > $(REV_FILENAME)
openttd-openmsx-0.3.1/scripts/Makefile.common-150-
##############################################
openttd-openmsx-0.3.1/scripts/Makefile.common-152-	$(_E) "[Checking] for missing repo files:"
openttd-openmsx-0.3.1/scripts/Makefile.common:153:	$(_V) for i in `$(REPO_FILES_CMD) | grep -E '($(FILE_SRC_RE)grf)$$'`; do hg st $$i `for j in $(FILE_SRC_EXTENSIONS) $(FILE_INC_EXTENSIONS); do cat $$i |  grep -v '^//' | grep -o "[a-zA-Z0-9/_.-]\+\.$$j" | sort | uniq; done`; done | sort | uniq  | grep "^?" && echo "Missing dependencies!" || echo "All is fine"
##############################################
openttd-openmsx-0.3.1/scripts/Makefile.def-105-REPO_REVISION ?= $(shell $(HG) id -n | cut -d+ -f1)
openttd-openmsx-0.3.1/scripts/Makefile.def:106:REPO_MODIFIED ?= $(shell [ "`$(HG) id | cut -c13`" = "+" ] && echo "M" || echo "")
openttd-openmsx-0.3.1/scripts/Makefile.def-107-REPO_BRANCH   ?= $(shell $(HG) id -b | sed "s/default/$(DEFAULT_BRANCH_NAME)/")
##############################################
openttd-openmsx-0.3.1/scripts/Makefile.bundles-55-	$(_V) $(MD5SUM) $(GRF_FILES) $(MAIN_TARGET) | sed "s/  / /;s/ /  /" > md5.check
openttd-openmsx-0.3.1/scripts/Makefile.bundles:56:	$(_V) if [ -z "`diff md5.check $(MD5_FILENAME)`" ]; then echo "No differences in md5sums"; else echo "Differences in md5sums:"; echo "`diff md5.check $(MD5_FILENAME)`"; false; fi
openttd-openmsx-0.3.1/scripts/Makefile.bundles-57-
##############################################
openttd-openmsx-0.3.1/scripts/Makefile.bundles-62-	$(_V) mkdir -p $(addprefix $(DIR_NAME_SRC)/,$(shell for i in $(REPO_DIRS); do for j in $(MAIN_DIRS); do echo $$i | grep -E "^$$j"; done; done))
openttd-openmsx-0.3.1/scripts/Makefile.bundles:63:	$(_V) for k in `for i in $(REPO_FILES); do for j in $(MAIN_DIRS); do echo "$$i" | grep -E "^$$j" | grep -E -v $(FILES_NOT_PACK_RE); done; done;`; do cp $(CP_FLAGS) $$k $(addprefix $(DIR_NAME_SRC)/,$$k); done
openttd-openmsx-0.3.1/scripts/Makefile.bundles:64:	$(_V) for k in `for i in $(REPO_FILES); do echo "$$i" | grep -v "/" | grep -E -v $(FILES_NOT_PACK_RE); done;`; do cp $(CP_FLAGS) $$k $(DIR_NAME_SRC); done
openttd-openmsx-0.3.1/scripts/Makefile.bundles-65-	$(_V) cp $(MD5_FILENAME) $(DIR_NAME_SRC)
##############################################
openttd-openmsx-0.3.1/.pc/install-no-subdir.patch/scripts/Makefile.bundles-55-	$(_V) $(MD5SUM) $(GRF_FILES) $(MAIN_TARGET) | sed "s/  / /;s/ /  /" > md5.check
openttd-openmsx-0.3.1/.pc/install-no-subdir.patch/scripts/Makefile.bundles:56:	$(_V) if [ -z "`diff md5.check $(MD5_FILENAME)`" ]; then echo "No differences in md5sums"; else echo "Differences in md5sums:"; echo "`diff md5.check $(MD5_FILENAME)`"; false; fi
openttd-openmsx-0.3.1/.pc/install-no-subdir.patch/scripts/Makefile.bundles-57-
##############################################
openttd-openmsx-0.3.1/.pc/install-no-subdir.patch/scripts/Makefile.bundles-62-	$(_V) mkdir -p $(addprefix $(DIR_NAME_SRC)/,$(shell for i in $(REPO_DIRS); do for j in $(MAIN_DIRS); do echo $$i | grep -E "^$$j"; done; done))
openttd-openmsx-0.3.1/.pc/install-no-subdir.patch/scripts/Makefile.bundles:63:	$(_V) for k in `for i in $(REPO_FILES); do for j in $(MAIN_DIRS); do echo "$$i" | grep -E "^$$j" | grep -E -v $(FILES_NOT_PACK_RE); done; done;`; do cp $(CP_FLAGS) $$k $(addprefix $(DIR_NAME_SRC)/,$$k); done
openttd-openmsx-0.3.1/.pc/install-no-subdir.patch/scripts/Makefile.bundles:64:	$(_V) for k in `for i in $(REPO_FILES); do echo "$$i" | grep -v "/" | grep -E -v $(FILES_NOT_PACK_RE); done;`; do cp $(CP_FLAGS) $$k $(DIR_NAME_SRC); done
openttd-openmsx-0.3.1/.pc/install-no-subdir.patch/scripts/Makefile.bundles-65-	$(_V) cp $(MD5_FILENAME) $(DIR_NAME_SRC)