Skip to content
This repository has been archived by the owner on Feb 8, 2018. It is now read-only.

Commit

Permalink
dir structure changed in preparation for splitting files
Browse files Browse the repository at this point in the history
svn path=/trunk/aspeditor/; revision=49671
  • Loading branch information
Blagovest Dachev committed Sep 8, 2005
1 parent 9e881f3 commit 2b1a5be
Showing 1 changed file with 5 additions and 14 deletions.
19 changes: 5 additions & 14 deletions src/chrome/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
packagename = aspdesigner
chromedir = $(MOZILLA_HOME)/chrome/$(packagename)
chrome_install_file = /var/lib/mozilla/chrome/installed-chrome.txt
chrome_install_text = "content,install,url,resource:/chrome/aspdesigner/content/aspdesigner/" \
"skin,install,url,resource:/chrome/aspdesigner/skin/aspdesigner/" \
"locale,install,url,resource:/chrome/aspdesigner/locale/en-US/aspdesigner/"
chrome_install_text = "content,install,url,resource:/chrome/aspdesigner/content/" \
"locale,install,url,resource:/chrome/aspdesigner/locale/en-US/"

contentdir = $(chromedir)/content/$(packagename)
contentdir = $(chromedir)/content
content_DATA = $(content_files)
content_files = \
$(srcdir)/content/aspdesigner.js \
Expand All @@ -15,19 +14,11 @@ content_files = \
$(srcdir)/content/contents.rdf


localedir = $(chromedir)/locale/en-US/$(packagename)
localedir = $(chromedir)/locale/en-US
locale_DATA = $(locale_files)
locale_files = \
$(srcdir)/locale/contents.rdf


skindir = $(chromedir)/skin/$(packagename)
skin_DATA = $(skin_files)
skin_files = \
$(srcdir)/skin/contents.rdf \
$(srcdir)/skin/aspdesigner.css


install-data-hook:
if test -f $(chrome_install_file); then f=$(chrome_install_file); else f=/opt/mozilla/lib/chrome/installed-chrome.txt; fi; \
cp $$f /tmp/chrome.old; \
Expand All @@ -43,4 +34,4 @@ uninstall-hook:
sudo bash -c "sed -e'/aspdesigner/d' /tmp/chrome.old > $(chrome_install_file)"; \
rm /tmp/chrome.old;

EXTRA_DIST = $(content_files) $(locale_files) $(skin_files)
EXTRA_DIST = $(content_files) $(locale_files)

0 comments on commit 2b1a5be

Please sign in to comment.