===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
wxhexeditor-0.24+repack/docs/Change.log-156-Implemented CopyAs BigEndian support. 
wxhexeditor-0.24+repack/docs/Change.log:157:Implemented CopyAs Text/Hex/C/C++ and ASM (Without BigEndian and HTML
wxhexeditor-0.24+repack/docs/Change.log-158-support)
##############################################
wxhexeditor-0.24+repack/src/HexDialogs.cpp-1804-		}
wxhexeditor-0.24+repack/src/HexDialogs.cpp:1805:	else if( SelectedFunction >= 3){ // C/C++/ASM Sources
wxhexeditor-0.24+repack/src/HexDialogs.cpp-1806-		chcOption->Insert(_("8bit - Byte "),0);
##############################################
wxhexeditor-0.24+repack/src/HexDialogs.cpp-1817-
wxhexeditor-0.24+repack/src/HexDialogs.cpp:1818:	//Enable big endian checkbox if multi byte representation selected for C/C++/ASM sources.
wxhexeditor-0.24+repack/src/HexDialogs.cpp-1819-	chkBigEndian->Enable( chcCopyAs->GetSelection() >=3 && chcOption->GetSelection() > 0 );
##############################################
wxhexeditor-0.24+repack/src/HexDialogs.cpp-1849-
wxhexeditor-0.24+repack/src/HexDialogs.cpp:1850:		//Enable big endian checkbox if multi byte representation selected for C/C++/ASM sources.
wxhexeditor-0.24+repack/src/HexDialogs.cpp-1851-		chkBigEndian->Enable( chcCopyAs->GetSelection() >=3 && chcOption->GetSelection() > 0 );
##############################################
wxhexeditor-0.24+repack/src/HexPanels.cpp-409-			x86_format_insn(&insn, line, sizeof(line), (m_choiceASMType->GetSelection() ? att_syntax : intel_syntax ));
wxhexeditor-0.24+repack/src/HexPanels.cpp:410:			mydasm << wxString::FromAscii(line) << wxT("\n");
wxhexeditor-0.24+repack/src/HexPanels.cpp-411-			pos += size;
wxhexeditor-0.24+repack/src/HexPanels.cpp-412-		} else {
wxhexeditor-0.24+repack/src/HexPanels.cpp:413:			mydasm << wxT("<invalid instruction>\n");
wxhexeditor-0.24+repack/src/HexPanels.cpp-414-			pos++;
##############################################
wxhexeditor-0.24+repack/src/HexPanels.cpp-416-	}
wxhexeditor-0.24+repack/src/HexPanels.cpp:417:	m_dasmCtrl->ChangeValue( mydasm );
wxhexeditor-0.24+repack/src/HexPanels.cpp-418-	}
##############################################
wxhexeditor-0.24+repack/debian/changelog-77-    libudis86 and libmhash.
wxhexeditor-0.24+repack/debian/changelog:78:  * Port to libdisasm as libudis86 isn't yet packaged for Debian.
wxhexeditor-0.24+repack/debian/changelog-79-  * Don't link against gomp.
##############################################
wxhexeditor-0.24+repack/debian/patches/01-build-with-system-mhash.patch-8- HOST=
wxhexeditor-0.24+repack/debian/patches/01-build-with-system-mhash.patch:9:-WXCXXFLAGS= `$(WXCONFIG) --cxxflags` -Iudis86 -Imhash/include -MMD -fopenmp -Wall -O2
wxhexeditor-0.24+repack/debian/patches/01-build-with-system-mhash.patch:10:+WXCXXFLAGS= `$(WXCONFIG) --cxxflags` -Iudis86 -MMD -fopenmp -Wall -O2
wxhexeditor-0.24+repack/debian/patches/01-build-with-system-mhash.patch:11: WXLDFLAGS = `$(WXCONFIG) --libs` `$(WXCONFIG) --libs aui` `$(WXCONFIG) --libs core`
wxhexeditor-0.24+repack/debian/patches/01-build-with-system-mhash.patch-12- WXCXXFLAGS += -fopenmp
##############################################
wxhexeditor-0.24+repack/debian/patches/06-use-libdisasm.patch-76--   while (ud_disassemble(&ud_obj))
wxhexeditor-0.24+repack/debian/patches/06-use-libdisasm.patch:77:-		mydasm << wxString::FromAscii( ud_insn_asm(&ud_obj) ) << wxT("\n");
wxhexeditor-0.24+repack/debian/patches/06-use-libdisasm.patch-78-+
##############################################
wxhexeditor-0.24+repack/debian/patches/06-use-libdisasm.patch-83-+			x86_format_insn(&insn, line, sizeof(line), (m_choiceASMType->GetSelection() ? att_syntax : intel_syntax ));
wxhexeditor-0.24+repack/debian/patches/06-use-libdisasm.patch:84:+			mydasm << wxString::FromAscii(line) << wxT("\n");
wxhexeditor-0.24+repack/debian/patches/06-use-libdisasm.patch-85-+			pos += size;
wxhexeditor-0.24+repack/debian/patches/06-use-libdisasm.patch-86-+		} else {
wxhexeditor-0.24+repack/debian/patches/06-use-libdisasm.patch:87:+			mydasm << wxT("<invalid instruction>\n");
wxhexeditor-0.24+repack/debian/patches/06-use-libdisasm.patch-88-+			pos++;
##############################################
wxhexeditor-0.24+repack/debian/patches/06-use-libdisasm.patch-90-+	}
wxhexeditor-0.24+repack/debian/patches/06-use-libdisasm.patch:91: 	m_dasmCtrl->ChangeValue( mydasm );
wxhexeditor-0.24+repack/debian/patches/06-use-libdisasm.patch-92- 	}
##############################################
wxhexeditor-0.24+repack/debian/patches/06-use-libdisasm.patch-108- HOST=
wxhexeditor-0.24+repack/debian/patches/06-use-libdisasm.patch:109:-WXCXXFLAGS= `$(WXCONFIG) --cxxflags` -Iudis86 -MMD -fopenmp -Wall -O2
wxhexeditor-0.24+repack/debian/patches/06-use-libdisasm.patch:110:+WXCXXFLAGS= `$(WXCONFIG) --cxxflags` -MMD -fopenmp -Wall -O2
wxhexeditor-0.24+repack/debian/patches/06-use-libdisasm.patch:111: WXLDFLAGS = `$(WXCONFIG) --libs` `$(WXCONFIG) --libs aui` `$(WXCONFIG) --libs core`
wxhexeditor-0.24+repack/debian/patches/06-use-libdisasm.patch-112- WXCXXFLAGS += -fopenmp
##############################################
wxhexeditor-0.24+repack/debian/patches/06-use-libdisasm.patch-118--LIBS = -lmhash
wxhexeditor-0.24+repack/debian/patches/06-use-libdisasm.patch:119:+LIBS = -ldisasm -lmhash
wxhexeditor-0.24+repack/debian/patches/06-use-libdisasm.patch-120- OBJECTS=$(SOURCES:.cpp=.o)
##############################################
wxhexeditor-0.24+repack/debian/patches/07-use-proper-opts.patch-10- HOST=
wxhexeditor-0.24+repack/debian/patches/07-use-proper-opts.patch:11:-WXCXXFLAGS= `$(WXCONFIG) --cxxflags` -MMD -fopenmp -Wall -O2
wxhexeditor-0.24+repack/debian/patches/07-use-proper-opts.patch:12:-WXLDFLAGS = `$(WXCONFIG) --libs` `$(WXCONFIG) --libs aui` `$(WXCONFIG) --libs core`
wxhexeditor-0.24+repack/debian/patches/07-use-proper-opts.patch:13:+WXCXXFLAGS= `$(WXCONFIG) --cxxflags` -MMD -fopenmp -Wall -O2 -DNDEBUG
wxhexeditor-0.24+repack/debian/patches/07-use-proper-opts.patch:14:+WXLDFLAGS = -Wl,--as-needed `$(WXCONFIG) --libs` `$(WXCONFIG) --libs std,aui` `$(WXCONFIG) --libs core`
wxhexeditor-0.24+repack/debian/patches/07-use-proper-opts.patch-15- WXCXXFLAGS += -fopenmp
##############################################
wxhexeditor-0.24+repack/debian/patches/08-remove-debug.patch-46- HOST=
wxhexeditor-0.24+repack/debian/patches/08-remove-debug.patch:47:-WXCXXFLAGS= `$(WXCONFIG) --cxxflags` -MMD -fopenmp -Wall -O2 -DNDEBUG
wxhexeditor-0.24+repack/debian/patches/08-remove-debug.patch:48:+WXCXXFLAGS= `$(WXCONFIG) --cxxflags` -MMD -fopenmp -Wall
wxhexeditor-0.24+repack/debian/patches/08-remove-debug.patch:49: WXLDFLAGS = -Wl,--as-needed `$(WXCONFIG) --libs` `$(WXCONFIG) --libs std,aui` `$(WXCONFIG) --libs core`
wxhexeditor-0.24+repack/debian/patches/08-remove-debug.patch-50- WXCXXFLAGS += -fopenmp
##############################################
wxhexeditor-0.24+repack/.pc/01-build-with-system-mhash.patch/Makefile-2-HOST=
wxhexeditor-0.24+repack/.pc/01-build-with-system-mhash.patch/Makefile:3:WXCXXFLAGS= `$(WXCONFIG) --cxxflags` -Iudis86 -Imhash/include -MMD -fopenmp -Wall -O2
wxhexeditor-0.24+repack/.pc/01-build-with-system-mhash.patch/Makefile:4:WXLDFLAGS = `$(WXCONFIG) --libs` `$(WXCONFIG) --libs aui` `$(WXCONFIG) --libs core`
wxhexeditor-0.24+repack/.pc/01-build-with-system-mhash.patch/Makefile-5-WXCXXFLAGS += -fopenmp
##############################################
wxhexeditor-0.24+repack/.pc/01-build-with-system-mhash.patch/Makefile-8-#LDFLAGS += -Wl,--subsystem,console -mconsole
wxhexeditor-0.24+repack/.pc/01-build-with-system-mhash.patch/Makefile:9:RC = `$(WXCONFIG) --rescomp`
wxhexeditor-0.24+repack/.pc/01-build-with-system-mhash.patch/Makefile-10-#RC = x86_64-w64-mingw32-windres --define WX_CPU_AMD64
wxhexeditor-0.24+repack/.pc/01-build-with-system-mhash.patch/Makefile:11:RCFLAGS = `$(WXCONFIG) --cxxflags | sed s/' '-m.*//g;`
wxhexeditor-0.24+repack/.pc/01-build-with-system-mhash.patch/Makefile-12-MSGFMT = msgfmt
##############################################
wxhexeditor-0.24+repack/.pc/01-build-with-system-mhash.patch/Makefile-89-else
wxhexeditor-0.24+repack/.pc/01-build-with-system-mhash.patch/Makefile:90:CC = $(shell echo `$(WXCONFIG) --cc`)
wxhexeditor-0.24+repack/.pc/01-build-with-system-mhash.patch/Makefile:91:CXX = $(shell echo `$(WXCONFIG) --cxx`)
wxhexeditor-0.24+repack/.pc/01-build-with-system-mhash.patch/Makefile-92-endif
##############################################
wxhexeditor-0.24+repack/.pc/01-build-with-system-mhash.patch/src/HexDialogs.cpp-1804-		}
wxhexeditor-0.24+repack/.pc/01-build-with-system-mhash.patch/src/HexDialogs.cpp:1805:	else if( SelectedFunction >= 3){ // C/C++/ASM Sources
wxhexeditor-0.24+repack/.pc/01-build-with-system-mhash.patch/src/HexDialogs.cpp-1806-		chcOption->Insert(_("8bit - Byte "),0);
##############################################
wxhexeditor-0.24+repack/.pc/01-build-with-system-mhash.patch/src/HexDialogs.cpp-1817-
wxhexeditor-0.24+repack/.pc/01-build-with-system-mhash.patch/src/HexDialogs.cpp:1818:	//Enable big endian checkbox if multi byte representation selected for C/C++/ASM sources.
wxhexeditor-0.24+repack/.pc/01-build-with-system-mhash.patch/src/HexDialogs.cpp-1819-	chkBigEndian->Enable( chcCopyAs->GetSelection() >=3 && chcOption->GetSelection() > 0 );
##############################################
wxhexeditor-0.24+repack/.pc/01-build-with-system-mhash.patch/src/HexDialogs.cpp-1849-
wxhexeditor-0.24+repack/.pc/01-build-with-system-mhash.patch/src/HexDialogs.cpp:1850:		//Enable big endian checkbox if multi byte representation selected for C/C++/ASM sources.
wxhexeditor-0.24+repack/.pc/01-build-with-system-mhash.patch/src/HexDialogs.cpp-1851-		chkBigEndian->Enable( chcCopyAs->GetSelection() >=3 && chcOption->GetSelection() > 0 );
##############################################
wxhexeditor-0.24+repack/.pc/06-use-libdisasm.patch/src/HexPanels.cpp-403-   while (ud_disassemble(&ud_obj))
wxhexeditor-0.24+repack/.pc/06-use-libdisasm.patch/src/HexPanels.cpp:404:		mydasm << wxString::FromAscii( ud_insn_asm(&ud_obj) ) << wxT("\n");
wxhexeditor-0.24+repack/.pc/06-use-libdisasm.patch/src/HexPanels.cpp:405:	m_dasmCtrl->ChangeValue( mydasm );
wxhexeditor-0.24+repack/.pc/06-use-libdisasm.patch/src/HexPanels.cpp-406-	}
##############################################
wxhexeditor-0.24+repack/.pc/06-use-libdisasm.patch/Makefile-2-HOST=
wxhexeditor-0.24+repack/.pc/06-use-libdisasm.patch/Makefile:3:WXCXXFLAGS= `$(WXCONFIG) --cxxflags` -Iudis86 -MMD -fopenmp -Wall -O2
wxhexeditor-0.24+repack/.pc/06-use-libdisasm.patch/Makefile:4:WXLDFLAGS = `$(WXCONFIG) --libs` `$(WXCONFIG) --libs aui` `$(WXCONFIG) --libs core`
wxhexeditor-0.24+repack/.pc/06-use-libdisasm.patch/Makefile-5-WXCXXFLAGS += -fopenmp
##############################################
wxhexeditor-0.24+repack/.pc/06-use-libdisasm.patch/Makefile-8-#LDFLAGS += -Wl,--subsystem,console -mconsole
wxhexeditor-0.24+repack/.pc/06-use-libdisasm.patch/Makefile:9:RC = `$(WXCONFIG) --rescomp`
wxhexeditor-0.24+repack/.pc/06-use-libdisasm.patch/Makefile-10-#RC = x86_64-w64-mingw32-windres --define WX_CPU_AMD64
wxhexeditor-0.24+repack/.pc/06-use-libdisasm.patch/Makefile:11:RCFLAGS = `$(WXCONFIG) --cxxflags | sed s/' '-m.*//g;`
wxhexeditor-0.24+repack/.pc/06-use-libdisasm.patch/Makefile-12-MSGFMT = msgfmt
##############################################
wxhexeditor-0.24+repack/.pc/06-use-libdisasm.patch/Makefile-85-else
wxhexeditor-0.24+repack/.pc/06-use-libdisasm.patch/Makefile:86:CC = $(shell echo `$(WXCONFIG) --cc`)
wxhexeditor-0.24+repack/.pc/06-use-libdisasm.patch/Makefile:87:CXX = $(shell echo `$(WXCONFIG) --cxx`)
wxhexeditor-0.24+repack/.pc/06-use-libdisasm.patch/Makefile-88-endif
##############################################
wxhexeditor-0.24+repack/.pc/07-use-proper-opts.patch/Makefile-2-HOST=
wxhexeditor-0.24+repack/.pc/07-use-proper-opts.patch/Makefile:3:WXCXXFLAGS= `$(WXCONFIG) --cxxflags` -MMD -fopenmp -Wall -O2
wxhexeditor-0.24+repack/.pc/07-use-proper-opts.patch/Makefile:4:WXLDFLAGS = `$(WXCONFIG) --libs` `$(WXCONFIG) --libs aui` `$(WXCONFIG) --libs core`
wxhexeditor-0.24+repack/.pc/07-use-proper-opts.patch/Makefile-5-WXCXXFLAGS += -fopenmp
##############################################
wxhexeditor-0.24+repack/.pc/07-use-proper-opts.patch/Makefile-8-#LDFLAGS += -Wl,--subsystem,console -mconsole
wxhexeditor-0.24+repack/.pc/07-use-proper-opts.patch/Makefile:9:RC = `$(WXCONFIG) --rescomp`
wxhexeditor-0.24+repack/.pc/07-use-proper-opts.patch/Makefile-10-#RC = x86_64-w64-mingw32-windres --define WX_CPU_AMD64
wxhexeditor-0.24+repack/.pc/07-use-proper-opts.patch/Makefile:11:RCFLAGS = `$(WXCONFIG) --cxxflags | sed s/' '-m.*//g;`
wxhexeditor-0.24+repack/.pc/07-use-proper-opts.patch/Makefile-12-MSGFMT = msgfmt
##############################################
wxhexeditor-0.24+repack/.pc/07-use-proper-opts.patch/Makefile-24-			src/HexEditorFrame.cpp
wxhexeditor-0.24+repack/.pc/07-use-proper-opts.patch/Makefile:25:LIBS = -ldisasm -lmhash
wxhexeditor-0.24+repack/.pc/07-use-proper-opts.patch/Makefile-26-OBJECTS=$(SOURCES:.cpp=.o)
##############################################
wxhexeditor-0.24+repack/.pc/07-use-proper-opts.patch/Makefile-80-else
wxhexeditor-0.24+repack/.pc/07-use-proper-opts.patch/Makefile:81:CC = $(shell echo `$(WXCONFIG) --cc`)
wxhexeditor-0.24+repack/.pc/07-use-proper-opts.patch/Makefile:82:CXX = $(shell echo `$(WXCONFIG) --cxx`)
wxhexeditor-0.24+repack/.pc/07-use-proper-opts.patch/Makefile-83-endif
##############################################
wxhexeditor-0.24+repack/.pc/08-remove-debug.patch/Makefile-2-HOST=
wxhexeditor-0.24+repack/.pc/08-remove-debug.patch/Makefile:3:WXCXXFLAGS= `$(WXCONFIG) --cxxflags` -MMD -fopenmp -Wall -O2 -DNDEBUG
wxhexeditor-0.24+repack/.pc/08-remove-debug.patch/Makefile:4:WXLDFLAGS = -Wl,--as-needed `$(WXCONFIG) --libs` `$(WXCONFIG) --libs std,aui` `$(WXCONFIG) --libs core`
wxhexeditor-0.24+repack/.pc/08-remove-debug.patch/Makefile-5-WXCXXFLAGS += -fopenmp
##############################################
wxhexeditor-0.24+repack/.pc/08-remove-debug.patch/Makefile-8-#LDFLAGS += -Wl,--subsystem,console -mconsole
wxhexeditor-0.24+repack/.pc/08-remove-debug.patch/Makefile:9:RC = `$(WXCONFIG) --rescomp`
wxhexeditor-0.24+repack/.pc/08-remove-debug.patch/Makefile-10-#RC = x86_64-w64-mingw32-windres --define WX_CPU_AMD64
wxhexeditor-0.24+repack/.pc/08-remove-debug.patch/Makefile:11:RCFLAGS = `$(WXCONFIG) --cxxflags | sed s/' '-m.*//g;`
wxhexeditor-0.24+repack/.pc/08-remove-debug.patch/Makefile-12-MSGFMT = msgfmt
##############################################
wxhexeditor-0.24+repack/.pc/08-remove-debug.patch/Makefile-24-			src/HexEditorFrame.cpp
wxhexeditor-0.24+repack/.pc/08-remove-debug.patch/Makefile:25:LIBS = -ldisasm -lmhash
wxhexeditor-0.24+repack/.pc/08-remove-debug.patch/Makefile-26-OBJECTS=$(SOURCES:.cpp=.o)
##############################################
wxhexeditor-0.24+repack/.pc/08-remove-debug.patch/Makefile-80-else
wxhexeditor-0.24+repack/.pc/08-remove-debug.patch/Makefile:81:CC = $(shell echo `$(WXCONFIG) --cc`)
wxhexeditor-0.24+repack/.pc/08-remove-debug.patch/Makefile:82:CXX = $(shell echo `$(WXCONFIG) --cxx`)
wxhexeditor-0.24+repack/.pc/08-remove-debug.patch/Makefile-83-endif
##############################################
wxhexeditor-0.24+repack/.pc/50-reorder-link-line-to-fix-FTBFS-against-libgomp.patch/Makefile-2-HOST=
wxhexeditor-0.24+repack/.pc/50-reorder-link-line-to-fix-FTBFS-against-libgomp.patch/Makefile:3:WXCXXFLAGS= `$(WXCONFIG) --cxxflags` -MMD -fopenmp -Wall
wxhexeditor-0.24+repack/.pc/50-reorder-link-line-to-fix-FTBFS-against-libgomp.patch/Makefile:4:WXLDFLAGS = -Wl,--as-needed `$(WXCONFIG) --libs` `$(WXCONFIG) --libs std,aui` `$(WXCONFIG) --libs core`
wxhexeditor-0.24+repack/.pc/50-reorder-link-line-to-fix-FTBFS-against-libgomp.patch/Makefile-5-WXCXXFLAGS += -fopenmp
##############################################
wxhexeditor-0.24+repack/.pc/50-reorder-link-line-to-fix-FTBFS-against-libgomp.patch/Makefile-8-#LDFLAGS += -Wl,--subsystem,console -mconsole
wxhexeditor-0.24+repack/.pc/50-reorder-link-line-to-fix-FTBFS-against-libgomp.patch/Makefile:9:RC = `$(WXCONFIG) --rescomp`
wxhexeditor-0.24+repack/.pc/50-reorder-link-line-to-fix-FTBFS-against-libgomp.patch/Makefile-10-#RC = x86_64-w64-mingw32-windres --define WX_CPU_AMD64
wxhexeditor-0.24+repack/.pc/50-reorder-link-line-to-fix-FTBFS-against-libgomp.patch/Makefile:11:RCFLAGS = `$(WXCONFIG) --cxxflags | sed s/' '-m.*//g;`
wxhexeditor-0.24+repack/.pc/50-reorder-link-line-to-fix-FTBFS-against-libgomp.patch/Makefile-12-MSGFMT = msgfmt
##############################################
wxhexeditor-0.24+repack/.pc/50-reorder-link-line-to-fix-FTBFS-against-libgomp.patch/Makefile-24-			src/HexEditorFrame.cpp
wxhexeditor-0.24+repack/.pc/50-reorder-link-line-to-fix-FTBFS-against-libgomp.patch/Makefile:25:LIBS = -ldisasm -lmhash
wxhexeditor-0.24+repack/.pc/50-reorder-link-line-to-fix-FTBFS-against-libgomp.patch/Makefile-26-OBJECTS=$(SOURCES:.cpp=.o)
##############################################
wxhexeditor-0.24+repack/.pc/50-reorder-link-line-to-fix-FTBFS-against-libgomp.patch/Makefile-80-else
wxhexeditor-0.24+repack/.pc/50-reorder-link-line-to-fix-FTBFS-against-libgomp.patch/Makefile:81:CC = $(shell echo `$(WXCONFIG) --cc`)
wxhexeditor-0.24+repack/.pc/50-reorder-link-line-to-fix-FTBFS-against-libgomp.patch/Makefile:82:CXX = $(shell echo `$(WXCONFIG) --cxx`)
wxhexeditor-0.24+repack/.pc/50-reorder-link-line-to-fix-FTBFS-against-libgomp.patch/Makefile-83-endif
##############################################
wxhexeditor-0.24+repack/.pc/13-makefile-dependencies.patch/Makefile-2-HOST=
wxhexeditor-0.24+repack/.pc/13-makefile-dependencies.patch/Makefile:3:WXCXXFLAGS= `$(WXCONFIG) --cxxflags` -MMD -fopenmp -Wall
wxhexeditor-0.24+repack/.pc/13-makefile-dependencies.patch/Makefile:4:WXLDFLAGS = -Wl,--as-needed `$(WXCONFIG) --libs` `$(WXCONFIG) --libs std,aui` `$(WXCONFIG) --libs core`
wxhexeditor-0.24+repack/.pc/13-makefile-dependencies.patch/Makefile-5-WXCXXFLAGS += -fopenmp
##############################################
wxhexeditor-0.24+repack/.pc/13-makefile-dependencies.patch/Makefile-8-#LDFLAGS += -Wl,--subsystem,console -mconsole
wxhexeditor-0.24+repack/.pc/13-makefile-dependencies.patch/Makefile:9:RC = `$(WXCONFIG) --rescomp`
wxhexeditor-0.24+repack/.pc/13-makefile-dependencies.patch/Makefile-10-#RC = x86_64-w64-mingw32-windres --define WX_CPU_AMD64
wxhexeditor-0.24+repack/.pc/13-makefile-dependencies.patch/Makefile:11:RCFLAGS = `$(WXCONFIG) --cxxflags | sed s/' '-m.*//g;`
wxhexeditor-0.24+repack/.pc/13-makefile-dependencies.patch/Makefile-12-MSGFMT = msgfmt
##############################################
wxhexeditor-0.24+repack/.pc/13-makefile-dependencies.patch/Makefile-24-			src/HexEditorFrame.cpp
wxhexeditor-0.24+repack/.pc/13-makefile-dependencies.patch/Makefile:25:LIBS = -ldisasm -lmhash
wxhexeditor-0.24+repack/.pc/13-makefile-dependencies.patch/Makefile-26-OBJECTS=$(SOURCES:.cpp=.o)
##############################################
wxhexeditor-0.24+repack/.pc/13-makefile-dependencies.patch/Makefile-80-else
wxhexeditor-0.24+repack/.pc/13-makefile-dependencies.patch/Makefile:81:CC = $(shell echo `$(WXCONFIG) --cc`)
wxhexeditor-0.24+repack/.pc/13-makefile-dependencies.patch/Makefile:82:CXX = $(shell echo `$(WXCONFIG) --cxx`)
wxhexeditor-0.24+repack/.pc/13-makefile-dependencies.patch/Makefile-83-endif
##############################################
wxhexeditor-0.24+repack/Makefile-2-HOST=
wxhexeditor-0.24+repack/Makefile:3:WXCXXFLAGS= `$(WXCONFIG) --cxxflags` -MMD -fopenmp -Wall
wxhexeditor-0.24+repack/Makefile:4:WXLDFLAGS = -Wl,--as-needed `$(WXCONFIG) --libs` `$(WXCONFIG) --libs std,aui` `$(WXCONFIG) --libs core`
wxhexeditor-0.24+repack/Makefile-5-WXCXXFLAGS += -fopenmp
##############################################
wxhexeditor-0.24+repack/Makefile-8-#LDFLAGS += -Wl,--subsystem,console -mconsole
wxhexeditor-0.24+repack/Makefile:9:RC = `$(WXCONFIG) --rescomp`
wxhexeditor-0.24+repack/Makefile-10-#RC = x86_64-w64-mingw32-windres --define WX_CPU_AMD64
wxhexeditor-0.24+repack/Makefile:11:RCFLAGS = `$(WXCONFIG) --cxxflags | sed s/' '-m.*//g;`
wxhexeditor-0.24+repack/Makefile-12-MSGFMT = msgfmt
##############################################
wxhexeditor-0.24+repack/Makefile-24-			src/HexEditorFrame.cpp
wxhexeditor-0.24+repack/Makefile:25:LIBS = -ldisasm -lmhash
wxhexeditor-0.24+repack/Makefile-26-OBJECTS=$(SOURCES:.cpp=.o)
##############################################
wxhexeditor-0.24+repack/Makefile-80-else
wxhexeditor-0.24+repack/Makefile:81:CC = $(shell echo `$(WXCONFIG) --cc`)
wxhexeditor-0.24+repack/Makefile:82:CXX = $(shell echo `$(WXCONFIG) --cxx`)
wxhexeditor-0.24+repack/Makefile-83-endif