mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
Do not use deprecated grep variants.
This commit is contained in:
parent
9372d9fb28
commit
f8cf7ff45a
@ -10,9 +10,9 @@ SRC4 := $(SRC4)
|
|||||||
# this file, so ../win32/$(PROJECT).vcxproj refers to the Visual Studio project
|
# this file, so ../win32/$(PROJECT).vcxproj refers to the Visual Studio project
|
||||||
# of whichever tool is including this makefile fragment.
|
# of whichever tool is including this makefile fragment.
|
||||||
|
|
||||||
BASE := $(shell egrep 'ClCompile.*cpp"' ../win32/$(PROJECT).vcxproj | sed -e 's/.*\"\(.*\)\".*/\1/' | sed -e 's@\\@/@g')
|
BASE := $(shell grep -E 'ClCompile.*cpp"' ../win32/$(PROJECT).vcxproj | sed -e 's/.*\"\(.*\)\".*/\1/' | sed -e 's@\\@/@g')
|
||||||
BASE2 := $(shell egrep 'ClCompile.*c"' ../win32/$(PROJECT).vcxproj | sed -e 's/.*\"\(.*\)\".*/\1/' | sed -e 's@\\@/@g')
|
BASE2 := $(shell grep -E 'ClCompile.*c"' ../win32/$(PROJECT).vcxproj | sed -e 's/.*\"\(.*\)\".*/\1/' | sed -e 's@\\@/@g')
|
||||||
BASE4 := $(shell egrep 'None.*S"' ../win32/$(PROJECT).vcxproj | sed -e 's/.*\"\(.*\)\".*/\1/' | sed -e 's@\\@/@g')
|
BASE4 := $(shell grep -E 'None.*S"' ../win32/$(PROJECT).vcxproj | sed -e 's/.*\"\(.*\)\".*/\1/' | sed -e 's@\\@/@g')
|
||||||
|
|
||||||
# The tool-specific makefile may request that certain files be omitted.
|
# The tool-specific makefile may request that certain files be omitted.
|
||||||
SRC += $(filter-out $(FILTER),$(BASE))
|
SRC += $(filter-out $(FILTER),$(BASE))
|
||||||
|
Loading…
Reference in New Issue
Block a user