1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
#!/usr/bin/make -f
# let LibChipcard benefit from symbol visibility feature of gcc
# this explicit setting is needed because the corresponding test in
# configure.ac checks for the basename of the called $CC binary.
CC=gcc
override_dh_clean:
find $(CURDIR) -type l -exec rm -v \{\} \;
dh_clean
override_dh_auto_configure:
dh_auto_configure -- \
--with-pcsc-libs=/usr/lib/$(shell dpkg-architecture -qDEB_HOST_MULTIARCH) \
$(shell dpkg-buildflags --export=configure)
%:
dh $@ --with autoreconf
|