diff options
author | Matěj Cepl <mcepl@redhat.com> | 2010-08-19 23:56:56 -0400 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2010-08-19 23:56:56 -0400 |
commit | 63de10a5636f23ab55e01826534f55e263805d77 (patch) | |
tree | 6e279fa17e5c09b28bae3fad0897c5daed1c62d9 /Makefile | |
parent | 7d881cf6e9d5e5589827ecc5c17bdfa78fe2b513 (diff) | |
download | bugzilla-triage-63de10a5636f23ab55e01826534f55e263805d77.tar.gz |
Make file to run subMakefile in mirroring directory
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1,4 +1,4 @@ -WEBDIR=/home/matej/Dokumenty/website +WEBDIR=/home/matej/Dokumenty/website/fedorahosted/ all: fix install @@ -6,8 +6,8 @@ install: local-install websync local-install: bugzilla-triage.xpi - rsync -av bugzilla-triage.xpi $(WEBDIR)/fedorahosted/ - rsync -av jsons/Config_data.json $(WEBDIR)/fedorahosted/ + rsync -av bugzilla-triage.xpi $(WEBDIR) + rsync -av jsons/Config_data.json $(WEBDIR) bugzilla-triage.xpi: package.json lib/*.js docs/* cfx xpi ;\ @@ -20,6 +20,7 @@ bugzilla-triage.xpi: package.json lib/*.js docs/* ' \ install.rdf ;\ zip -9rmqT bugzilla-triage.xpi install.rdf ;\ + make -C $(WEBDIR) fix: ! grep -n FIXME lib/*.js |