diff --git a/extensions/wallet/editor/resources/Makefile.in b/extensions/wallet/editor/resources/Makefile.in new file mode 100644 index 000000000000..961f0f5deb32 --- /dev/null +++ b/extensions/wallet/editor/resources/Makefile.in @@ -0,0 +1,33 @@ +# +# The contents of this file are subject to the Netscape Public +# License Version 1.1 (the "License"); you may not use this file +# except in compliance with the License. You may obtain a copy of +# the License at http://www.mozilla.org/NPL/ +# +# Software distributed under the License is distributed on an "AS +# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or +# implied. See the License for the specific language governing +# rights and limitations under the License. +# +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is Netscape +# Communications Corporation. Portions created by Netscape are +# Copyright (C) 1998 Netscape Communications Corporation. All +# Rights Reserved. +# +# Contributor(s): +# + +DEPTH = ../../../.. +topsrcdir = @top_srcdir@ +srcdir = @srcdir@ +VPATH = @srcdir@ + +include $(DEPTH)/config/autoconf.mk + +DIRS = content skin locale + +include $(topsrcdir)/config/rules.mk + + diff --git a/extensions/wallet/editor/resources/content/MANIFEST b/extensions/wallet/editor/resources/content/MANIFEST new file mode 100644 index 000000000000..e4d38f359f91 --- /dev/null +++ b/extensions/wallet/editor/resources/content/MANIFEST @@ -0,0 +1,3 @@ +WalletEditor.xul +WalletEditor.js +wallet.css diff --git a/extensions/wallet/editor/resources/content/Makefile.in b/extensions/wallet/editor/resources/content/Makefile.in new file mode 100644 index 000000000000..e661dc9bcb08 --- /dev/null +++ b/extensions/wallet/editor/resources/content/Makefile.in @@ -0,0 +1,38 @@ +# +# The contents of this file are subject to the Netscape Public +# License Version 1.1 (the "License"); you may not use this file +# except in compliance with the License. You may obtain a copy of +# the License at http://www.mozilla.org/NPL/ +# +# Software distributed under the License is distributed on an "AS +# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or +# implied. See the License for the specific language governing +# rights and limitations under the License. +# +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is Netscape +# Communications Corporation. Portions created by Netscape are +# Copyright (C) 1998 Netscape Communications Corporation. All +# Rights Reserved. +# +# Contributor(s): +# + +DEPTH = ../../../../.. +topsrcdir = @top_srcdir@ +srcdir = @srcdir@ +VPATH = @srcdir@ + +include $(DEPTH)/config/autoconf.mk + +EXPORT_RESOURCE_CONTENT = \ + $(srcdir)/WalletEditor.xul \ + $(srcdir)/WalletEditor.js \ + $(NULL) + +include $(topsrcdir)/config/rules.mk + +install:: + $(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/wallet/content/default + diff --git a/extensions/wallet/editor/resources/content/makefile.win b/extensions/wallet/editor/resources/content/makefile.win new file mode 100644 index 000000000000..0b7bcea6e136 --- /dev/null +++ b/extensions/wallet/editor/resources/content/makefile.win @@ -0,0 +1,34 @@ +#!gmake +# +# The contents of this file are subject to the Netscape Public +# License Version 1.1 (the "License"); you may not use this file +# except in compliance with the License. You may obtain a copy of +# the License at http://www.mozilla.org/NPL/ +# +# Software distributed under the License is distributed on an "AS +# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or +# implied. See the License for the specific language governing +# rights and limitations under the License. +# +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is Netscape +# Communications Corporation. Portions created by Netscape are +# Copyright (C) 1998 Netscape Communications Corporation. All +# Rights Reserved. +# +# Contributor(s): + +DEPTH=..\..\..\..\.. + +include <$(DEPTH)\config\rules.mak> + +CONTENTDIR=$(DIST)\bin\chrome\wallet\content\default + +install:: + $(MAKE_INSTALL) WalletEditor.xul $(CONTENTDIR) + $(MAKE_INSTALL) WalletEditor.js $(CONTENTDIR) + + +clobber:: + rm -f $(DIST)\bin\chrome\wallet\content\default\*.* diff --git a/extensions/wallet/editor/resources/locale/Makefile.in b/extensions/wallet/editor/resources/locale/Makefile.in new file mode 100644 index 000000000000..70835720ad35 --- /dev/null +++ b/extensions/wallet/editor/resources/locale/Makefile.in @@ -0,0 +1,33 @@ +# +# The contents of this file are subject to the Netscape Public +# License Version 1.1 (the "License"); you may not use this file +# except in compliance with the License. You may obtain a copy of +# the License at http://www.mozilla.org/NPL/ +# +# Software distributed under the License is distributed on an "AS +# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or +# implied. See the License for the specific language governing +# rights and limitations under the License. +# +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is Netscape +# Communications Corporation. Portions created by Netscape are +# Copyright (C) 1998 Netscape Communications Corporation. All +# Rights Reserved. +# +# Contributor(s): +# + +DEPTH = ../../../../.. +topsrcdir = @top_srcdir@ +srcdir = @srcdir@ +VPATH = @srcdir@ + +include $(DEPTH)/config/autoconf.mk + +DIRS =en-US + +include $(topsrcdir)/config/rules.mk + + diff --git a/extensions/wallet/editor/resources/locale/en-US/MANIFEST_PROPERTIES b/extensions/wallet/editor/resources/locale/en-US/MANIFEST_PROPERTIES new file mode 100644 index 000000000000..0c65b0dd86ed --- /dev/null +++ b/extensions/wallet/editor/resources/locale/en-US/MANIFEST_PROPERTIES @@ -0,0 +1,2 @@ +WalletEditor.properties +WalletEditor.dtd \ No newline at end of file diff --git a/extensions/wallet/editor/resources/locale/en-US/Makefile.in b/extensions/wallet/editor/resources/locale/en-US/Makefile.in new file mode 100644 index 000000000000..7c57d8c89627 --- /dev/null +++ b/extensions/wallet/editor/resources/locale/en-US/Makefile.in @@ -0,0 +1,38 @@ +# +# The contents of this file are subject to the Netscape Public +# License Version 1.1 (the "License"); you may not use this file +# except in compliance with the License. You may obtain a copy of +# the License at http://www.mozilla.org/NPL/ +# +# Software distributed under the License is distributed on an "AS +# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or +# implied. See the License for the specific language governing +# rights and limitations under the License. +# +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is Netscape +# Communications Corporation. Portions created by Netscape are +# Copyright (C) 1998 Netscape Communications Corporation. All +# Rights Reserved. +# +# Contributor(s): +# + +DEPTH = ../../../../../.. +topsrcdir = @top_srcdir@ +srcdir = @srcdir@ +VPATH = @srcdir@ + +include $(DEPTH)/config/autoconf.mk + +EXPORT_RESOURCE_CONTENT = \ + $(srcdir)/WalletEditor.dtd \ + $(srcdir)/WalletEditor.properties \ + $(NULL) + +include $(topsrcdir)/config/rules.mk + +install:: + $(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/wallet/locale/en-US + diff --git a/extensions/wallet/editor/resources/locale/en-US/makefile.win b/extensions/wallet/editor/resources/locale/en-US/makefile.win new file mode 100644 index 000000000000..3a22afe77376 --- /dev/null +++ b/extensions/wallet/editor/resources/locale/en-US/makefile.win @@ -0,0 +1,34 @@ +#!gmake +# +# The contents of this file are subject to the Netscape Public +# License Version 1.1 (the "License"); you may not use this file +# except in compliance with the License. You may obtain a copy of +# the License at http://www.mozilla.org/NPL/ +# +# Software distributed under the License is distributed on an "AS +# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or +# implied. See the License for the specific language governing +# rights and limitations under the License. +# +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is Netscape +# Communications Corporation. Portions created by Netscape are +# Copyright (C) 1998 Netscape Communications Corporation. All +# Rights Reserved. +# +# Contributor(s): + +DEPTH=..\..\..\..\..\.. + +include <$(DEPTH)\config\rules.mak> + +LOCALEDIR=$(DIST)\bin\chrome\wallet\locale\en-US + +install:: + $(MAKE_INSTALL) WalletEditor.dtd $(LOCALEDIR) + $(MAKE_INSTALL) WalletEditor.properties $(LOCALEDIR) + + +clobber:: + rm -f $(DIST)\bin\chrome\wallet\locale\en-US\*.* diff --git a/extensions/wallet/editor/resources/locale/makefile.win b/extensions/wallet/editor/resources/locale/makefile.win new file mode 100644 index 000000000000..b1e2f7e345df --- /dev/null +++ b/extensions/wallet/editor/resources/locale/makefile.win @@ -0,0 +1,27 @@ +#!gmake +# +# The contents of this file are subject to the Netscape Public +# License Version 1.1 (the "License"); you may not use this file +# except in compliance with the License. You may obtain a copy of +# the License at http://www.mozilla.org/NPL/ +# +# Software distributed under the License is distributed on an "AS +# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or +# implied. See the License for the specific language governing +# rights and limitations under the License. +# +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is Netscape +# Communications Corporation. Portions created by Netscape are +# Copyright (C) 1998 Netscape Communications Corporation. All +# Rights Reserved. +# +# Contributor(s): + +DEPTH=..\..\..\..\.. + +DIRS= en-US + +include <$(DEPTH)\config\rules.mak> + diff --git a/extensions/wallet/editor/resources/makefile.win b/extensions/wallet/editor/resources/makefile.win new file mode 100644 index 000000000000..2b0b0b07b1fd --- /dev/null +++ b/extensions/wallet/editor/resources/makefile.win @@ -0,0 +1,27 @@ +#!gmake +# +# The contents of this file are subject to the Netscape Public +# License Version 1.1 (the "License"); you may not use this file +# except in compliance with the License. You may obtain a copy of +# the License at http://www.mozilla.org/NPL/ +# +# Software distributed under the License is distributed on an "AS +# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or +# implied. See the License for the specific language governing +# rights and limitations under the License. +# +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is Netscape +# Communications Corporation. Portions created by Netscape are +# Copyright (C) 1998 Netscape Communications Corporation. All +# Rights Reserved. +# +# Contributor(s): + +DEPTH=..\..\..\.. + +DIRS=content locale skin + +include <$(DEPTH)\config\rules.mak> + diff --git a/extensions/wallet/editor/resources/skin/MANIFEST_SKIN b/extensions/wallet/editor/resources/skin/MANIFEST_SKIN new file mode 100644 index 000000000000..a011bde586ad --- /dev/null +++ b/extensions/wallet/editor/resources/skin/MANIFEST_SKIN @@ -0,0 +1 @@ +WalletEditor.css diff --git a/extensions/wallet/editor/resources/skin/Makefile.in b/extensions/wallet/editor/resources/skin/Makefile.in new file mode 100644 index 000000000000..526501c45862 --- /dev/null +++ b/extensions/wallet/editor/resources/skin/Makefile.in @@ -0,0 +1,37 @@ +# +# The contents of this file are subject to the Netscape Public +# License Version 1.1 (the "License"); you may not use this file +# except in compliance with the License. You may obtain a copy of +# the License at http://www.mozilla.org/NPL/ +# +# Software distributed under the License is distributed on an "AS +# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or +# implied. See the License for the specific language governing +# rights and limitations under the License. +# +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is Netscape +# Communications Corporation. Portions created by Netscape are +# Copyright (C) 1998 Netscape Communications Corporation. All +# Rights Reserved. +# +# Contributor(s): +# + +DEPTH = ../../../../.. +topsrcdir = @top_srcdir@ +srcdir = @srcdir@ +VPATH = @srcdir@ + +include $(DEPTH)/config/autoconf.mk + +EXPORT_RESOURCE_CONTENT = \ + $(srcdir)/CookieViewer.css \ + $(NULL) + +include $(topsrcdir)/config/rules.mk + +install:: + $(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/wallet/skin/default + diff --git a/extensions/wallet/editor/resources/skin/makefile.win b/extensions/wallet/editor/resources/skin/makefile.win new file mode 100644 index 000000000000..40339ac86665 --- /dev/null +++ b/extensions/wallet/editor/resources/skin/makefile.win @@ -0,0 +1,33 @@ +#!gmake +# +# The contents of this file are subject to the Netscape Public +# License Version 1.1 (the "License"); you may not use this file +# except in compliance with the License. You may obtain a copy of +# the License at http://www.mozilla.org/NPL/ +# +# Software distributed under the License is distributed on an "AS +# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or +# implied. See the License for the specific language governing +# rights and limitations under the License. +# +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is Netscape +# Communications Corporation. Portions created by Netscape are +# Copyright (C) 1998 Netscape Communications Corporation. All +# Rights Reserved. +# +# Contributor(s): + +DEPTH=..\..\..\..\.. + +include <$(DEPTH)\config\rules.mak> + +SKINDIR=$(DIST)\bin\chrome\wallet\skin\default + +install:: + $(MAKE_INSTALL) CookieViewer.css $(SKINDIR) + + +clobber:: + rm -f $(DIST)\bin\chrome\wallet\skin\default\*.*