| OLD | NEW |
| 1 #!/usr/bin/make -f | 1 #!/usr/bin/make -f |
| 2 # | 2 # |
| 3 # $(DEBIAN)/rules for Ubuntu linux | 3 # $(DEBIAN)/rules for Ubuntu linux |
| 4 # | 4 # |
| 5 # Use this however you want, just give credit where credit is due. | 5 # Use this however you want, just give credit where credit is due. |
| 6 # | 6 # |
| 7 # Copyright (c) 2007 Ben Collins <bcollins@ubuntu.com> | 7 # Copyright (c) 2007 Ben Collins <bcollins@ubuntu.com> |
| 8 # | 8 # |
| 9 | 9 |
| 10 ifeq ($(DEBIAN),) | 10 ifeq ($(DEBIAN),) |
| 11 DEBIAN=debian.master | 11 DEBIAN=debian.chrome |
| 12 endif | 12 endif |
| 13 | 13 |
| 14 DENV=debian/debian.env | 14 DENV=debian/debian.env |
| 15 | 15 |
| 16 printdebian: | 16 printdebian: |
| 17 @echo "$(DEBIAN)" | 17 @echo "$(DEBIAN)" |
| 18 | 18 |
| 19 # Debian Build System targets | 19 # Debian Build System targets |
| 20 %: | 20 %: |
| 21 @if [ ! -f $(DENV) ] ; then echo DEBIAN=$(DEBIAN) > $(DENV); chmod +x $(
DENV); fi | 21 @if [ ! -f $(DENV) ] ; then echo DEBIAN=$(DEBIAN) > $(DENV); chmod +x $(
DENV); fi |
| 22 @$(MAKE) --no-print-directory -f $(DEBIAN)/rules $@ DEBIAN=$(DEBIAN) | 22 @$(MAKE) --no-print-directory -f $(DEBIAN)/rules $@ DEBIAN=$(DEBIAN) |
| OLD | NEW |