From 8954acaa431ef1c725795e53d923ac1befa40e28 Mon Sep 17 00:00:00 2001 From: "mscott%netscape.com" Date: Thu, 19 Aug 1999 06:21:59 +0000 Subject: [PATCH] Adding to the repository. Makefiles for the locale\en-US directory for local mail. git-svn-id: svn://10.0.0.236/trunk@43565 18797224-902f-48f8-a5cc-f745e15eee43 --- .../local/resources/locale/en-US/Makefile.in | 41 +++++++++++++++++++ .../local/resources/locale/en-US/makefile.win | 28 +++++++++++++ 2 files changed, 69 insertions(+) create mode 100644 mozilla/mailnews/local/resources/locale/en-US/Makefile.in create mode 100644 mozilla/mailnews/local/resources/locale/en-US/makefile.win diff --git a/mozilla/mailnews/local/resources/locale/en-US/Makefile.in b/mozilla/mailnews/local/resources/locale/en-US/Makefile.in new file mode 100644 index 00000000000..9233508e35b --- /dev/null +++ b/mozilla/mailnews/local/resources/locale/en-US/Makefile.in @@ -0,0 +1,41 @@ +#!gmake +# +# The contents of this file are subject to the Netscape Public License +# Version 1.0 (the "NPL"); you may not use this file except in +# compliance with the NPL. You may obtain a copy of the NPL at +# http://www.mozilla.org/NPL/ +# +# Software distributed under the NPL is distributed on an "AS IS" basis, +# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL +# for the specific language governing rights and limitations under the +# NPL. +# +# The Initial Developer of this code under the NPL is Netscape +# Communications Corporation. Portions created by Netscape are +# Copyright (C) 1998 Netscape Communications Corporation. All Rights +# Reserved. + +DEPTH = ../../../../.. +topsrcdir = @top_srcdir@ +VPATH = @srcdir@ +srcdir = @srcdir@ + +include $(DEPTH)/config/autoconf.mk + +include $(topsrcdir)/config/config.mk + +include $(topsrcdir)/config/rules.mk + +INSTALL_DIR = $(DIST)/bin/chrome/messenger/locale/en-US + +EXPORT_RESOURCE_FILES = \ + $(srcdir)/localMsgs_en-US.properties \ + $(NULL) + +EXPORT_RESOURCE_FILES_TO_REMOVE := $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_FILES)) + +install:: + $(INSTALL) $(EXPORT_RESOURCE_FILES) $(INSTALL_DIR) + +clobber:: + $(RM) $(EXPORT_RESOURCE_FILES_TO_REMOVE) diff --git a/mozilla/mailnews/local/resources/locale/en-US/makefile.win b/mozilla/mailnews/local/resources/locale/en-US/makefile.win new file mode 100644 index 00000000000..37e5df5d100 --- /dev/null +++ b/mozilla/mailnews/local/resources/locale/en-US/makefile.win @@ -0,0 +1,28 @@ +#!nmake +# +# The contents of this file are subject to the Netscape Public License +# Version 1.0 (the "NPL"); you may not use this file except in +# compliance with the NPL. You may obtain a copy of the NPL at +# http://www.mozilla.org/NPL/ +# +# Software distributed under the NPL is distributed on an "AS IS" basis, +# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL +# for the specific language governing rights and limitations under the +# NPL. +# +# The Initial Developer of this code under the NPL is Netscape +# Communications Corporation. Portions created by Netscape are +# Copyright (C) 1999 Netscape Communications Corporation. All Rights +# Reserved. + +DEPTH=..\..\..\..\.. +MODULE=msglocal + +include <$(DEPTH)\config\rules.mak> + +install:: + $(MAKE_INSTALL) localMsgs_en-US.properties $(DIST)\bin\chrome\messenger\locale\en-US + +clobber:: + rm -f $(DIST)bin\chrome\messenger\locale\en-US\localMsgs_en-US.properties +