blob: 2b86e9d083fdda94a29ad786468d083bc4228738 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/make -f
#DEB_BUILD_DEPENDENCIES = build-arch
# DEB_ENABLE_TESTS = yes
# Work around bug in "Setup haddock", which does not find the header file at
# this location.
build/libghc-ghc-events-doc:: dist-ghc/build/EventLogFormat.h
dist-ghc/build/EventLogFormat.h: include/EventLogFormat.h
mkdir -p $$(dirname $@)
cp $< $@
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/hlibrary.mk
|