1 |
#!/usr/bin/make -f |
2 |
# -*- makefile -*- |
3 |
|
4 |
CFLAGS = -Wall -g |
5 |
SCONS_OPTIONS = CC="ccache gcc" CXX="ccache g++" INSTALL_PREFIX=/usr -j2 |
6 |
SCONS= scons $(SCONS_OPTIONS) |
7 |
|
8 |
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) |
9 |
CFLAGS += -O0 |
10 |
else |
11 |
CFLAGS += -O2 |
12 |
endif |
13 |
|
14 |
ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) |
15 |
INSTALL_PROGRAM += -s |
16 |
endif |
17 |
|
18 |
# shared library versions, option 1 |
19 |
major=0 |
20 |
|
21 |
INSTALLROOT=$(CURDIR)/debian/tmp |
22 |
DATADIR=$(INSTALLROOT)/usr/share |
23 |
|
24 |
build: build-stamp |
25 |
build-stamp: |
26 |
dh_testdir |
27 |
cd $(CURDIR) && $(SCONS) libascend tcltk pygtk models |
28 |
cd $(CURDIR) && $(SCONS) doc/book.pdf |
29 |
touch build-stamp |
30 |
|
31 |
clean: |
32 |
dh_testdir |
33 |
rm -f build-stamp |
34 |
-cd $(CURDIR) && $(SCONS) -c |
35 |
find $(CURDIR) -name ".scon*" | xargs rm -rf |
36 |
find $(CURDIR) -type f -name "*.pyc" | xargs rm -rf |
37 |
find $(CURDIR) -type f -name "*.pyo" | xargs rm -rf |
38 |
find $(CURDIR) -type f -name "*.o" | xargs rm -rf |
39 |
find $(CURDIR) -type f -name "*.os" | xargs rm -rf |
40 |
find $(CURDIR) -type f -name "*.a" | xargs rm -rf |
41 |
-rm $(CURDIR)/doc/*.tex |
42 |
-rm -rf $(CURDIR)/doc/html |
43 |
# dh_testroot |
44 |
dh_clean |
45 |
|
46 |
install: build |
47 |
dh_testdir |
48 |
# dh_testroot |
49 |
dh_clean -k |
50 |
dh_installdirs |
51 |
mkdir -p $(INSTALLROOT)/usr |
52 |
cd $(CURDIR) && $(SCONS) INSTALL_ROOT=$(INSTALLROOT) install |
53 |
# |
54 |
cd $(CURDIR)/pygtk/gnome && |
55 |
install -m 644 -D ascend.desktop $(INSTALLROOT)$(DATADIR)/applications/ascend.desktop && |
56 |
install -m 644 -D ascend.png $(INSTALLROOT)$(DATADIR)/icons/ascend-app.png && |
57 |
install -m 644 -D ascend.png $(INSTALLROOT)$(DATADIR)/icons/hicolor/64x64/ascend.png && |
58 |
install -m 644 -D ascend.xml $(CURDIR)/debian/ascend.mime |
59 |
# |
60 |
dh_install --autodest |
61 |
dh_desktop |
62 |
dh_installmime |
63 |
dh_installman debian/ascend.man |
64 |
dh_installman debian/ascend4.man |
65 |
dh_installman debian/ascend-config.man |
66 |
|
67 |
# Build architecture-independent files here. |
68 |
binary-indep: |
69 |
dh_testdir |
70 |
dh_testroot |
71 |
-cd $(CUR_DIR) && $(SCONS) doc |
72 |
|
73 |
# Build architecture-dependent files here. |
74 |
binary-arch: build install |
75 |
dh_testdir |
76 |
dh_testroot |
77 |
dh_installchangelogs CHANGELOG.txt |
78 |
dh_installdocs |
79 |
dh_installexamples |
80 |
dh_installman |
81 |
dh_link |
82 |
dh_strip |
83 |
dh_compress |
84 |
dh_fixperms |
85 |
dh_makeshlibs |
86 |
dh_installdeb |
87 |
dh_shlibdeps -L ascend -l debian/ascend/usr/lib |
88 |
dh_gencontrol |
89 |
dh_md5sums |
90 |
dh_builddeb |
91 |
|
92 |
binary: binary-indep binary-arch |
93 |
.PHONY: build clean binary-indep binary-arch binary install configure |