-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathMakefile.am
More file actions
36 lines (30 loc) · 776 Bytes
/
Makefile.am
File metadata and controls
36 lines (30 loc) · 776 Bytes
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
AUTOMAKE_OPTIONS = foreign
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = src
EXTRA_DIST = src/include/versions.h \
src/include/configuration.h \
src/parser/dpomdp.spirit \
src/parser/pomdp.spirit \
problems \
doc \
README.md \
src/boost \
src/solvers/GMAA-IC \
src/solvers/GMAA-ICE
#removes subversion dirs before packing
dist-hook:
rm -rf `find $(distdir) -name .svn`
bak: bak-recursive
bak-recursive:
list='$(SUBDIRS)'; for subdir in $$list; do \
test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) bak); \
done
htmldoc:
doxygen doc/doxygen.conf;
MADPVER="0.4.1"
package:
rm -fr madp-$(MADPVER)
cp madp-(MADPVER).tar.gz madp_(MADPVER).orig.tar.gz
tar xf madp_(MADPVER).orig.tar.gz
cp -r debian madp-(MADPVER)/
cd madp-(MADPVER) && debuild -us -uc