1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
#!/usr/bin/make -f
# ====================================================================
# debian/rules for tsclient
# Common Debian Build System: (C) 2002 Colin Walters
#
# Author: Andrew Lau <netsnipe@users.sourceforge.net>
# $Id: rules 13400 2007-11-05 22:21:35Z kilian $
# ====================================================================
# CDBS Classes & Rules
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/gnome.mk
include /usr/share/cdbs/1/rules/simple-patchsys.mk
include /usr/share/gnome-pkg-tools/1/rules/uploaders.mk
-include /usr/share/gnome-pkg-tools/1/rules/sf-get-source.mk
# Compilation options
DEB_CONFIGURE_SCRIPT_ENV += LDFLAGS="-Wl,-O1 -Wl,--as-needed"
build/tsclient::
uudecode -o debian/harddrive.png debian/harddrive.png.uue
# clean .png
cleanbuilddir/tsclient::
rm -f debian/harddrive.png
clean::
rm -f po/*.gmo po/stamp-it
|