===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
grafx2-2.7/src/c64formats.c-132-      // $4000 => InterPaint Hi-Res (.iph)
grafx2-2.7/src/c64formats.c:133:    case 9003: // bitmap + ScreenRAM + loadaddr (+ border ?)
grafx2-2.7/src/c64formats.c-134-    case 9009: // bitmap + ScreenRAM + loadaddr
##############################################
grafx2-2.7/src/c64formats.c-697-
grafx2-2.7/src/c64formats.c:698:            case 9003: // bitmap + ScreenRAM + loadaddr (+ border ?)
grafx2-2.7/src/c64formats.c-699-            case 9002: // bitmap + ScreenRAM + loadaddr
##############################################
grafx2-2.7/src/filesel.c-642-#if defined(__AROS__)
grafx2-2.7/src/filesel.c:643:  iptr = AROS_BSTR_ADDR( in );
grafx2-2.7/src/filesel.c-644-  len = AROS_BSTR_strlen( in );
grafx2-2.7/src/filesel.c-645-#else
grafx2-2.7/src/filesel.c:646:  iptr = BADDR( in );
grafx2-2.7/src/filesel.c-647-  len = iptr[0];
##############################################
grafx2-2.7/src/Makefile-59-  REVISION_CACHE = .revision.cache
grafx2-2.7/src/Makefile:60:  RES := $(shell if [ ! -f $(REVISION_CACHE) ] || [ "`cat $(REVISION_CACHE)`" != "$(GIT_REVISION)" ] ; then echo "$(GIT_REVISION)" > $(REVISION_CACHE) ; fi )
grafx2-2.7/src/Makefile-61-
##############################################
grafx2-2.7/src/Makefile-63-  LABEL_CACHE = .label.cache
grafx2-2.7/src/Makefile:64:  RES := $(shell if [ ! -f $(LABEL_CACHE) ] || [ "`cat $(LABEL_CACHE)`" != "$(LABEL)" ] ; then echo "$(LABEL)" > $(LABEL_CACHE) ; fi )
grafx2-2.7/src/Makefile-65-else
##############################################
grafx2-2.7/src/Makefile-447-    FCLOPT = 
grafx2-2.7/src/Makefile:448:    COPT = -W -Wall -m68020-60 -fomit-frame-pointer -std=c99 -Wdeclaration-after-statement -D__MINT__ -DNO_INLINE_MATH -O$(OPTIM) -I$(PREFIX)/include `$(PREFIX)/bin/libpng12-config --cflags` `$(PREFIX)/bin/sdl-config --cflags` $(JOYCOPT) $(LUACOPT)
grafx2-2.7/src/Makefile:449:    LOPT = -static -m68020-60 -lSDL_image `$(PREFIX)/bin/sdl-config --libs` -L$(PREFIX)/lib -ltiff -ljpeg `$(PREFIX)/bin/libpng12-config --libs` -lz -lm $(TTFLOPT) -lfreetype $(LUALOPT) $(LAYERLOPT)
grafx2-2.7/src/Makefile-450-  else
##############################################
grafx2-2.7/src/Makefile-585-        ARCH = -g -march=armv8-a -mtune=cortex-a57 -fPIE -std=c99 -ffast-math -mcpu=cortex-a57+crc+fp+simd
grafx2-2.7/src/Makefile:586:        COPT = `$(DEVKITPRO)/portlibs/switch/bin/sdl2-config --cflags` `$(DEVKITPRO)/portlibs/switch/bin/freetype-config --cflags`
grafx2-2.7/src/Makefile-587-        COPT += $(ARCH) -Wall -ffunction-sections -O$(OPTIM)
##############################################
grafx2-2.7/src/Makefile-589-        LOPT = -specs=$(DEVKITPRO)/libnx/switch.specs -g $(ARCH) -Wl,-Map,$(OBJDIR)/$*.map
grafx2-2.7/src/Makefile:590:        LOPT += `$(DEVKITPRO)/portlibs/switch/bin/sdl2-config --libs`
grafx2-2.7/src/Makefile:591:        LOPT += `$(DEVKITPRO)/portlibs/switch/bin/aarch64-none-elf-pkg-config --libs-only-l SDL2_image`
grafx2-2.7/src/Makefile:592:        LOPT += `$(DEVKITPRO)/portlibs/switch/bin/aarch64-none-elf-pkg-config --libs-only-l SDL2_ttf`
grafx2-2.7/src/Makefile-593-        LOPT += -lstdc++ -lnx
##############################################
grafx2-2.7/src/Makefile-688-        LOPT += $(TTFLOPT)
grafx2-2.7/src/Makefile:689:        LOPT += $(shell $(PKG_CONFIG) --libs libpng `$(PKG_CONFIG) --exists libtiff-4 && echo libtiff-4`)
grafx2-2.7/src/Makefile-690-        LOPT += $(shell $(PKG_CONFIG) --exists libtiff-4 || echo -ltiff)
##############################################
grafx2-2.7/src/Makefile-1149-
grafx2-2.7/src/Makefile:1150:RES := $(shell $(MKDIR) $(OBJDIR) ; if [ ! -f $(CFLAGS_CACHE) ] || [ "`cat $(CFLAGS_CACHE)`" != "$(COPT) $(CFLAGS)" ] ; then echo "$(COPT) $(CFLAGS)" > $(CFLAGS_CACHE) ; fi )
grafx2-2.7/src/Makefile-1151-
##############################################
grafx2-2.7/src/Makefile-1239-	for f in $(SCRIPT_FILES:../share/%=%); do \
grafx2-2.7/src/Makefile:1240:	  test -d $(DESTDIR)$(datadir)/`dirname $$f` || $(MKDIR) $(DESTDIR)$(datadir)/`dirname $$f` ; \
grafx2-2.7/src/Makefile-1241-	  $(CP) "../share/$$f" "$(DESTDIR)$(datadir)/$$f" ; \