mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 17:33:05 +00:00
20 lines
389 B
Makefile
Executable File
20 lines
389 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
#export DH_VERBOSE=1
|
|
|
|
%:
|
|
dh $@ --parallel
|
|
|
|
ifeq ($(DEB_BUILD_ARCH), mips64el)
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- QMAKE_CC=clang QMAKE_CXX=clang++
|
|
endif
|
|
|
|
ifeq ($(DEB_BUILD_ARCH), mipsel)
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- QMAKE_CC=clang QMAKE_CXX=clang++
|
|
endif
|
|
|