mirror of
https://github.com/badaix/snapcast
synced 2025-04-25 22:01:07 +02:00
14 lines
380 B
Makefile
Executable file
14 lines
380 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
include /usr/share/dpkg/buildflags.mk
|
|
|
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
|
export DEB_BUILD_OPTIONS = noautodbgsym parallel=3
|
|
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
|
|
export DEB_CPPFLAGS_MAINT_APPEND = -DJSON_HAS_CPP_14
|
|
|
|
%:
|
|
dh $@ --buildsystem=cmake --builddirectory=build
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- $(CMAKEFLAGS)
|