mirror of https://github.com/BOINC/boinc.git
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
## -*- mode: make; tab-width: 4 -*-
|
|
## $Id$
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
## make sure rebuilding uses the right aclocal-switches
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
API_SUBDIRS = api lib zip
|
|
|
|
if ENABLE_SERVER
|
|
SERVER_SUBDIRS = db test py sched apps tools
|
|
endif
|
|
|
|
if ENABLE_CLIENT
|
|
CLIENT_SUBDIRS = client
|
|
endif
|
|
|
|
if BUILD_CLIENTGUI
|
|
CLIENTGUI_SUBDIRS = clientgui sea
|
|
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)
|
|
|
|
# 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
|
|
|
|
includedir = ${prefix}/include/BOINC
|
|
include_HEADERS = \
|
|
config.h \
|
|
version.h
|
|
|
|
dist-hook:
|
|
rm -rf `find $(distdir) -name .backup -prune -o -name '*~' -o -name CVS`
|
|
# cd $(distdir) && ./_autosetup
|