mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 17:33:05 +00:00

https://github.com/linuxdeepin/internal-discussion/issues/708 Change-Id: I1159eaf47c87d9e37c0d801f46aee83f9287439b
18 lines
322 B
Makefile
Executable File
18 lines
322 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
export QT_SELECT=5
|
|
|
|
DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)
|
|
ifeq ($(DEB_BUILD_ARCH), mips64el)
|
|
export CC = /usr/bin/clang
|
|
export CXX = /usr/bin/clang++
|
|
endif
|
|
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
#export DH_VERBOSE=1
|
|
|
|
%:
|
|
dh $@ --parallel
|
|
|