| Index: debian/rules
|
| diff --git a/debian/rules b/debian/rules
|
| new file mode 100755
|
| index 0000000000000000000000000000000000000000..b68c49db264d621190a744eb0bcf0a962304fb34
|
| --- /dev/null
|
| +++ b/debian/rules
|
| @@ -0,0 +1,22 @@
|
| +#!/usr/bin/make -f
|
| +#
|
| +# $(DEBIAN)/rules for Ubuntu linux
|
| +#
|
| +# Use this however you want, just give credit where credit is due.
|
| +#
|
| +# Copyright (c) 2007 Ben Collins <bcollins@ubuntu.com>
|
| +#
|
| +
|
| +ifeq ($(DEBIAN),)
|
| +DEBIAN=debian.chrome
|
| +endif
|
| +
|
| +DENV=debian/debian.env
|
| +
|
| +printdebian:
|
| + @echo "$(DEBIAN)"
|
| +
|
| +# Debian Build System targets
|
| +%:
|
| + @if [ ! -f $(DENV) ] ; then echo DEBIAN=$(DEBIAN) > $(DENV); chmod +x $(DENV); fi
|
| + @$(MAKE) --no-print-directory -f $(DEBIAN)/rules $@ DEBIAN=$(DEBIAN)
|
|
|