/usr/share/doc/libxplc0.3.13-dev/examples/Makefile is in libxplc0.3.13-dev 0.3.13-3ubuntu1.
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 | # This file is example code for XPLC (http://xplc.sourceforge.net/),
# and is put into the public domain.
SUBDIRS=$(patsubst %/Makefile,%,$(wildcard */Makefile))
.PHONY: default clean $(SUBDIRS)
default: $(SUBDIRS)
clean: $(SUBDIRS)
simple-module-user: simple-module
# This is so that the example builds from within the XPLC package.
export CPPFLAGS+=-I../../include
export LDFLAGS+=-L../..
$(SUBDIRS):
$(MAKE) -C $@ $(MAKECMDGOALS)
|