Skip to content
Snippets Groups Projects
Commit 3416b992 authored by Gregory Szorc's avatar Gregory Szorc
Browse files

Bug 784841 - Part 18y: Convert /modules; r=glandium

parent 3253f187
No related branches found
No related tags found
No related merge requests found
Showing
with 94 additions and 35 deletions
......@@ -12,6 +12,5 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
MODULE = libbz2
DIRS = src
include $(topsrcdir)/config/rules.mk
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
DIRS += ['src']
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
......@@ -11,17 +11,6 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
include $(srcdir)/objs.mk
DIRS =
ifdef MOZ_ZIPWRITER
DIRS += zipwriter
endif
ifdef ENABLE_TESTS
TOOL_DIRS += test
endif
MODULE = jar
LIBRARY_NAME = jar$(VERSION_NUMBER)
EXPORT_LIBRARY = 1
......
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
if CONFIG['MOZ_ZIPWRITER']:
DIRS += ['zipwriter']
TEST_TOOL_DIRS += ['test']
......@@ -15,6 +15,4 @@ MODULE = test_libjar
XPCSHELL_TESTS = unit
DIRS = mochitest chrome
include $(topsrcdir)/config/rules.mk
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
DIRS += ['mochitest', 'chrome']
......@@ -11,8 +11,4 @@ include $(DEPTH)/config/autoconf.mk
MODULE = zipwriter
DIRS = public src
TEST_DIRS += test
include $(topsrcdir)/config/rules.mk
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
DIRS += ['public', 'src']
TEST_DIRS += ['test']
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
......@@ -11,23 +11,6 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
DIRS = src
MODULE = libmar_test
ifdef MOZ_ENABLE_SIGNMAR
DIRS += sign verify
else
ifeq ($(OS_ARCH),WINNT)
# On Windows we don't verify with NSS and updater needs to link to it
DIRS += verify
endif
endif
# If we are building ./sign and ./verify then ./tool must come after it
DIRS += tool
ifdef MOZ_ENABLE_SIGNMAR
TEST_DIRS += tests
endif
include $(topsrcdir)/config/rules.mk
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
DIRS += ['src']
if CONFIG['MOZ_ENABLE_SIGNMAR']:
DIRS += ['sign', 'verify']
TEST_DIRS += ['tests']
elif CONFIG['OS_ARCH'] == 'WINNT':
# On Windows we don't verify with NSS and updater needs to link to it
DIRS += ['verify']
# If we are building ./sign and ./verify then ./tool must come after it
DIRS += ['tool']
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment