summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbriano%netscape.com <devnull@localhost>1999-09-01 23:23:11 +0000
committerbriano%netscape.com <devnull@localhost>1999-09-01 23:23:11 +0000
commit4d59792fa77b6ff8eba20e2a892496a355048294 (patch)
tree9684c0726d76fdd49bca6af6131075a2873129bd
parent082a174277773b7c86a8da04a812c7311a48306d (diff)
downloadnss-hg-4d59792fa77b6ff8eba20e2a892496a355048294.tar.gz
Cleaned it up and eliminated the pointless #!gmake.
-rw-r--r--dbm/Makefile.in15
-rw-r--r--dbm/include/Makefile.in39
2 files changed, 24 insertions, 30 deletions
diff --git a/dbm/Makefile.in b/dbm/Makefile.in
index 09f43b200..3393921d1 100644
--- a/dbm/Makefile.in
+++ b/dbm/Makefile.in
@@ -1,4 +1,3 @@
-#! gmake
#
# The contents of this file are subject to the Netscape Public License
# Version 1.0 (the "NPL"); you may not use this file except in
@@ -14,24 +13,22 @@
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
+#
-DEPTH = ..
+DEPTH = ..
topsrcdir = @top_srcdir@
VPATH = @srcdir@
srcdir = @srcdir@
include $(DEPTH)/config/autoconf.mk
-MODULE = dbm
-
-RELEASE = dbm
+MODULE = dbm
+RELEASE = dbm
-DIRS = include \
- src \
- $(NULL)
+DIRS = include src
ifdef ENABLE_TESTS
-DIRS += tests
+DIRS += tests
endif
include $(topsrcdir)/config/rules.mk
diff --git a/dbm/include/Makefile.in b/dbm/include/Makefile.in
index a3e0c5517..de6f911ee 100644
--- a/dbm/include/Makefile.in
+++ b/dbm/include/Makefile.in
@@ -1,36 +1,33 @@
-#! gmake
-
-DEPTH = ../..
+DEPTH = ../..
topsrcdir = @top_srcdir@
VPATH = @srcdir@
srcdir = @srcdir@
include $(DEPTH)/config/autoconf.mk
-MODULE = dbm
+MODULE = dbm
-EXPORTS = nsres.h \
- cdefs.h \
+EXPORTS = \
+ nsres.h \
+ cdefs.h \
mcom_db.h \
ncompat.h \
winfile.h \
$(NULL)
-EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS))
-
-PRIVATE_EXPORTS = hsearch.h \
- page.h \
- extern.h \
- ndbm.h \
- queue.h \
- hash.h \
- mpool.h \
- search.h \
- $(NULL)
+EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS))
+
+PRIVATE_EXPORTS = \
+ hsearch.h \
+ page.h \
+ extern.h \
+ ndbm.h \
+ queue.h \
+ hash.h \
+ mpool.h \
+ search.h \
+ $(NULL)
-PRIVATE_EXPORTS := $(addprefix $(srcdir)/, $(PRIVATE_EXPORTS))
+PRIVATE_EXPORTS := $(addprefix $(srcdir)/, $(PRIVATE_EXPORTS))
include $(topsrcdir)/config/rules.mk
-
-
-