File: rules

package info (click to toggle)
picolisp 25.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 6,192 kB
  • sloc: ansic: 2,181; javascript: 1,004; makefile: 90; sh: 2
file content (39 lines) | stat: -rwxr-xr-x 854 bytes parent folder | download | duplicates (4)
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
37
38
39
#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

override_dh_auto_build:
ifeq (,$(filter nobootstrap,$(DEB_BUILD_OPTIONS)))
	cd src && pil lib/llvm.l main.l -bye > base.ll && mv base.map ../lib/map
	cd src && pil lib/llvm.l ext.l -bye > ext.ll
	cd src && pil lib/llvm.l ht.l -bye > ht.ll
endif
	make -C src
	mkdir -p build/bash_completion.d
	cp lib/bash_completion build/bash_completion.d/pil

override_dh_auto_test:
	HOME=$(CURDIR)/build $(CURDIR)/pil test/lib.l -bye + < /dev/null

override_dh_auto_install:
	chmod a-x lib/replica.l
	dh_install -X.bc src   usr/lib/picolisp

override_dh_installdocs:
	dh_installdocs

override_dh_auto_clean:
	-rm -rf build
	make -C src clean

override_dh_compress:
	dh_compress -X.l

override_dh_strip:
	dh_strip --no-automatic-dbgsym

override_dh_dwz: ;

%:
	dh $@