17 lines
397 B
Makefile
17 lines
397 B
Makefile
#!/usr/bin/make -f
|
|
|
|
#!/usr/bin/make -f
|
|
|
|
include /usr/share/cdbs/1/rules/debhelper.mk
|
|
include /usr/share/cdbs/1/class/cmake.mk
|
|
|
|
export CFLAGS := $(shell dpkg-buildflags --get CFLAGS)
|
|
export CXXFLAGS := $(shell dpkg-buildflags --get CXXFLAGS)
|
|
export LDFLAGS := $(shell dpkg-buildflags --get LDFLAGS)
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- -DUSE_BUNDLED_LIBS=Off
|