gecko-dev/extensions/cookie/Makefile.in

59 lines
1.3 KiB
Makefile
Raw Normal View History

1999-06-10 22:08:59 +00:00
#
# 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/
1999-06-10 22:08:59 +00:00
#
# 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.
1999-06-10 22:08:59 +00:00
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is Netscape
1999-06-10 22:08:59 +00:00
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
1999-09-08 00:24:27 +00:00
#
1999-06-10 22:08:59 +00:00
1999-09-08 00:24:27 +00:00
DEPTH = ../..
1999-06-10 22:08:59 +00:00
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
1999-09-08 00:24:27 +00:00
MODULE = cookie
LIBRARY_NAME = cookie
IS_COMPONENT = 1
1999-06-10 22:08:59 +00:00
ifdef ENABLE_TESTS
1999-09-08 00:24:27 +00:00
DIRS = tests
endif
1999-09-08 00:24:27 +00:00
CPPSRCS = \
nsCookieService.cpp \
nsCookie.cpp \
nsCookieHTTPNotify.cpp \
$(NULL)
1999-06-10 22:08:59 +00:00
1999-09-08 00:24:27 +00:00
EXPORTS = \
nsICookieService.h \
nsCookieHTTPNotify.h \
nsCookie.h \
$(NULL)
1999-06-10 22:08:59 +00:00
1999-09-08 00:24:27 +00:00
EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS))
1999-09-08 00:24:27 +00:00
EXTRA_DSO_LDOPTS = \
-L$(DIST)/bin \
$(XPCOM_LIBS) \
1999-09-08 00:24:27 +00:00
$(NSPR_LIBS) \
$(NULL)
1999-06-10 22:08:59 +00:00
include $(topsrcdir)/config/rules.mk
1999-09-11 01:34:27 +00:00