1#
2# This Source Code Form is subject to the terms of the Mozilla Public
3# License, v. 2.0. If a copy of the MPL was not distributed with this
4# file, You can obtain one at http://mozilla.org/MPL/2.0/.
5
6#! gmake
7
8MOD_DEPTH	= ../../..
9topsrcdir	= @top_srcdir@
10srcdir		= @srcdir@
11VPATH		= @srcdir@
12
13include $(MOD_DEPTH)/config/autoconf.mk
14
15include $(topsrcdir)/config/config.mk
16
17TARGETS	= $(OBJS)
18
19INCLUDES = -I$(dist_includedir) -I$(topsrcdir)/pr/include -I$(topsrcdir)/pr/include/private
20
21DEFINES += -D_NSPR_BUILD_
22
23CSRCS = prmalloc.c prmem.c
24
25include $(topsrcdir)/config/rules.mk
26
27export:: $(TARGETS)
28
29