2004-06-18 09:05:15 +00:00
|
|
|
## -*- mode: make; tab-width: 4 -*-
|
2003-06-06 19:00:42 +00:00
|
|
|
## $Id$
|
|
|
|
|
2003-06-11 22:42:39 +00:00
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
|
2004-12-15 11:41:02 +00:00
|
|
|
## make sure rebuilding uses the right aclocal-switches
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
|
2004-11-26 17:45:13 +00:00
|
|
|
API_SUBDIRS = api lib apps zip
|
2004-10-18 01:54:28 +00:00
|
|
|
|
2004-06-29 08:51:54 +00:00
|
|
|
if ENABLE_SERVER
|
2004-11-19 13:50:51 +00:00
|
|
|
SERVER_SUBDIRS = db tools test py sched
|
2004-06-29 08:51:54 +00:00
|
|
|
endif
|
|
|
|
|
2004-07-13 10:36:18 +00:00
|
|
|
if ENABLE_CLIENT
|
2004-11-19 13:50:51 +00:00
|
|
|
CLIENT_SUBDIRS = client
|
|
|
|
endif
|
2004-12-17 18:18:45 +00:00
|
|
|
|
2004-11-19 13:50:51 +00:00
|
|
|
if BUILD_CLIENTGUI
|
2005-01-05 13:20:37 +00:00
|
|
|
CLIENTGUI_SUBDIRS = clientgui sea
|
2004-07-13 10:36:18 +00:00
|
|
|
endif
|
|
|
|
|
2004-12-09 10:23:56 +00:00
|
|
|
# ORDER MATTERS below. One must build dependencies FIRST, then things
|
|
|
|
# that depend on them later
|
2005-01-12 09:17:27 +00:00
|
|
|
SUBDIRS = m4 RSAEuro $(API_SUBDIRS) $(SERVER_SUBDIRS) $(CLIENT_SUBDIRS) $(CLIENTGUI_SUBDIRS)
|
2003-06-06 20:55:08 +00:00
|
|
|
|
|
|
|
# Putting a directory name recursively copies the entire contents - the
|
|
|
|
# dist-hook below gets rid of CVS directories.
|
|
|
|
|
2004-06-18 09:05:15 +00:00
|
|
|
EXTRA_DIST = \
|
|
|
|
win_build \
|
|
|
|
doc \
|
|
|
|
stripchart \
|
2004-11-26 17:45:13 +00:00
|
|
|
INSTALL
|
2003-06-06 19:00:42 +00:00
|
|
|
|
2003-07-18 21:43:12 +00:00
|
|
|
|
2003-06-06 20:55:08 +00:00
|
|
|
dist-hook:
|
2004-11-26 17:45:13 +00:00
|
|
|
rm -rf `find $(distdir) -name .backup -prune -o -name '*~' -o -name CVS`
|
|
|
|
# cd $(distdir) && ./_autosetup
|
2003-07-11 21:22:34 +00:00
|
|
|
|
2004-11-27 09:51:37 +00:00
|
|
|
# convenience target
|
2003-07-11 21:22:34 +00:00
|
|
|
client-bin:
|
|
|
|
cd client && make client-bin client-bin-gz
|