/usr/share/boinc-dev/Makefile.am is in libboinc-app-dev 7.9.3+dfsg-5.
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 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | ## -*- mode: makefile; tab-width: 4 -*-
## $Id$
AUTOMAKE_OPTIONS = foreign
include Makefile.incl
## make sure rebuilding uses the right aclocal-switches
ACLOCAL_AMFLAGS = -I m4
if ENABLE_LIBRARIES
API_SUBDIRS = api lib
if ENABLE_SERVER
API_SUBDIRS += zip
endif
## boinc_zip needed for wrapper
if ENABLE_APPS
API_SUBDIRS += zip
endif
if ENABLE_BOINCZIP
API_SUBDIRS += zip
endif
endif
if ENABLE_SERVER
SERVER_SUBDIRS = db test py sched apps tools vda html
## once contained samples/example_app which breaks out-of-source-tree builds
endif
if ENABLE_CLIENT
CLIENT_SUBDIRS = client client/scripts
endif
if ENABLE_MANAGER
CLIENTGUI_SUBDIRS = clientgui locale
if BUILD_X11_SCREENSAVER
CLIENTGUI_SUBDIRS += clientscr
endif
endif
if ENABLE_APPS
APPS_SUBDIRS = samples
endif
# ORDER MATTERS below. One must build dependencies FIRST, then things
# that depend on them later
SUBDIRS = m4 $(API_SUBDIRS) $(SERVER_SUBDIRS) $(CLIENT_SUBDIRS) $(CLIENTGUI_SUBDIRS) $(APPS_SUBDIRS) doc
# Putting a directory name recursively copies the entire contents - the
# dist-hook below gets rid of CVS directories.
EXTRA_DIST = \
win_build \
doc \
stripchart \
INSTALL
if INSTALL_HEADERS
pkginclude_HEADERS = \
version.h \
svn_version.h
endif
# svn_version.h should always be rebuilt.
BUILT_SOURCES = svn_version.h
svn_version.h: generate_svn_version.sh
cd $(srcdir) && sh generate_svn_version.sh
.PHONY: svn_version.h
# Add a stage target for staging a distribution
clean-generic:
rm -rf stage
stage: all
if [ ! -d stage ] ; then mkdir stage ; fi
rm -rf stage/*
$(MAKE) DESTDIR=$(PWD)/stage install
dist-hook:
rm -rf `find $(distdir) -name .backup -prune -o -name '*~' -o -name CVS`
# cd $(distdir) && ./_autosetup
|