This file is indexed.

/usr/share/doc/libargtable2-dev/examples/Makefile.nmake is in libargtable2-dev 12-1.1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
#This Makefile is for building the argtable2 examples with Microsoft Visual C.
#To build a release version execute
#   NMAKE /f Makefile.nmake
#or for a debug version execute 
#   NMAKE /f Makefile.nmake DEBUG=1

CFLAGS = /D "WIN32" /D "_MBCS" /nologo /I "..\src" ..\src\argtable2.lib

!IF "$(DEBUG)" == "1"
CFLAGS = $(CFLAGS) /D "_DEBUG" /Od /MLd /RTC1 /ZI
!ELSE
CFLAGS = $(CFLAGS) /D "NDEBUG" /O2 /ML /GS /Zi
!ENDIF

all: argcustom.exe echo.exe ls.exe mv.exe myprog.exe rm.exe uname.exe

argcustom.exe: argcustom.obj argxxx.obj
  cl $(CFLAGS) argcustom.obj argxxx.obj

clean:
	del *.exe *.obj *.ilk *.idb *.pdb