diff --git a/intl/locale/Makefile.in b/intl/locale/Makefile.in new file mode 100644 index 000000000000..aa800e8c7db7 --- /dev/null +++ b/intl/locale/Makefile.in @@ -0,0 +1,30 @@ +#!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 + +DIRS = public src + +ifdef ENABLE_TESTS +DIRS += tests +endif + +include $(topsrcdir)/config/rules.mk diff --git a/intl/locale/public/Makefile.in b/intl/locale/public/Makefile.in new file mode 100644 index 000000000000..28f76142b867 --- /dev/null +++ b/intl/locale/public/Makefile.in @@ -0,0 +1,31 @@ +#!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 + +EXPORTS = \ + nsCollationCID.h \ + nsDateTimeFormatCID.h \ + nsICollation.h \ + nsIDateTimeFormat.h \ + $(NULL) + +include $(topsrcdir)/config/rules.mk diff --git a/intl/locale/src/Makefile.in b/intl/locale/src/Makefile.in new file mode 100644 index 000000000000..9801600d2fe8 --- /dev/null +++ b/intl/locale/src/Makefile.in @@ -0,0 +1,34 @@ +#!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 + +LIBRARY = locale_s + +CPPSRCS = \ + nsCollation.cpp \ + $(NULL) + +EXPORTS = \ + nsCollation.h \ + $(NULL) + +include $(topsrcdir)/config/rules.mk diff --git a/intl/locale/tests/Makefile.in b/intl/locale/tests/Makefile.in new file mode 100644 index 000000000000..e37cc5c61428 --- /dev/null +++ b/intl/locale/tests/Makefile.in @@ -0,0 +1,30 @@ +#!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 + +CPPSRCS = \ + LocaleSelfTest.cpp \ + $(NULL) + +PROGRAM = LocaleSelfTest + +include $(topsrcdir)/config/rules.mk