jellyfin/debian/rules
2018-10-22 03:25:50 +03:00

21 lines
394 B
Makefile
Executable file

#! /usr/bin/make -f
CONFIG := Release
TERM := xterm
SHELL := /bin/bash
export DH_VERBOSE=1
%:
dh $@
# disable "make check"
override_dh_auto_test:
# disable stripping debugging symbols
override_dh_clistrip:
override_dh_auto_build:
dotnet build --configuration $(CONFIG) $(CURDIR)/MediaBrowser.sln
override_dh_auto_clean:
dotnet clean --configuration $(CONFIG) $(CURDIR)/MediaBrowser.sln