/usr/src/blcr-0.8.5/examples/counting/Makefile.am is in blcr-dkms 0.8.5-2.
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 | noinst_PROGRAMS = counting
if CR_INSTALLED_LIBCR
libcr_ldflag = -L$(libdir)
else
libcr_ldflag = -L$(top_builddir)/libcr
counting_DEPENDENCIES = $(top_builddir)/libcr/libcr.la
$(top_builddir)/libcr/libcr.la: FORCE
@$(MAKE) $(AM_MAKEFLAGS) --no-print-directory -C $(top_builddir)/libcr libcr.la
.PHONY: FORCE
FORCE:
endif
LDADD = $(libcr_ldflag) -lcr -lpthread @CR_CLIENT_LDADD@
AM_CFLAGS = -Wall
MOSTLYCLEANFILES = context.*
|