/usr/share/tkgate-1.8.7/bitmaps/Makefile is in tkgate-data 1.8.7-4.
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 | #
# Makefile for converting .xpm files to .gif file. Unless you want to
# modify or create your own image files, there should be no need to
# use this makefile. The makefile assumes that you have the "convert"
# utility from ImageMagick installed on your system.
#
.SUFFIXES: .gif .xpm
all:
@for f in *.xpm; do make $${f%.xpm}.gif ; done
.xpm.gif:
convert $< $@
|