blob: 7b7396b2a9d9ed156c3ef0a4c4ac6f7947698120 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
%:
dh $@ -Dsciteco
build:
dh_testdir
dh_auto_build -Dscintilla/scinterm
dh_auto_configure -Dsciteco -- \
--enable-bootstrap \
--with-scintilla=../scintilla \
--with-interface=ncurses
dh_auto_build -Dsciteco
touch $@
clean:
dh_testdir
dh_auto_clean -Dscintilla/scinterm
dh_auto_clean -Dsciteco
dh_clean
|