Skip to content

Latest commit

 

History

History
55 lines (46 loc) · 1.22 KB

Makefile.in

File metadata and controls

55 lines (46 loc) · 1.22 KB
 
Sep 10, 1999
Sep 10, 1999
1
#
Nov 6, 1999
Nov 6, 1999
2
3
4
5
# 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/
Sep 10, 1999
Sep 10, 1999
6
#
Nov 6, 1999
Nov 6, 1999
7
8
9
10
# 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.
Sep 10, 1999
Sep 10, 1999
11
#
Nov 6, 1999
Nov 6, 1999
12
13
14
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is Netscape
Sep 10, 1999
Sep 10, 1999
15
# Communications Corporation. Portions created by Netscape are
Nov 6, 1999
Nov 6, 1999
16
17
18
19
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
Sep 10, 1999
Sep 10, 1999
20
21
#
Sep 1, 1999
Sep 1, 1999
22
DEPTH = ../..
Aug 19, 1998
Aug 19, 1998
23
24
topsrcdir = @top_srcdir@
srcdir = @srcdir@
Sep 10, 1999
Sep 10, 1999
25
VPATH = @srcdir@
Aug 19, 1998
Aug 19, 1998
26
27
28
include $(DEPTH)/config/autoconf.mk
Sep 1, 1999
Sep 1, 1999
29
MODULE = dbm
Aug 19, 1998
Aug 19, 1998
30
Sep 1, 1999
Sep 1, 1999
31
32
33
EXPORTS = \
nsres.h \
cdefs.h \
Aug 19, 1998
Aug 19, 1998
34
35
36
37
38
mcom_db.h \
ncompat.h \
winfile.h \
$(NULL)
Sep 1, 1999
Sep 1, 1999
39
40
41
42
43
44
45
46
47
48
49
50
EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS))
PRIVATE_EXPORTS = \
hsearch.h \
page.h \
extern.h \
ndbm.h \
queue.h \
hash.h \
mpool.h \
search.h \
$(NULL)
Aug 19, 1998
Aug 19, 1998
51
Sep 1, 1999
Sep 1, 1999
52
PRIVATE_EXPORTS := $(addprefix $(srcdir)/, $(PRIVATE_EXPORTS))
Aug 19, 1998
Aug 19, 1998
53
54
include $(topsrcdir)/config/rules.mk