michael@0: # michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: # file, You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: # LIBS specifies linker flags when building an executable program from michael@0: # this Makefile. We link against the "standalone glue" which does not require michael@0: # that the application be linked against the XPCOM dynamic library or the NSPR michael@0: # dynamic libraries. michael@0: LIBS = \ michael@0: $(XPCOM_STANDALONE_GLUE_LDOPTS) \ michael@0: $(NULL) michael@0: michael@0: # Need to link with CoreFoundation on Mac michael@0: ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT)) michael@0: LIBS += \ michael@0: $(TK_LIBS) \ michael@0: $(NULL) michael@0: endif