Skip to content

Commit

Permalink
Cleaned it up and eliminated the pointless #!gmake.
Browse files Browse the repository at this point in the history
  • Loading branch information
briano%netscape.com committed Sep 1, 1999
1 parent 97bbcbb commit cfe6ed5
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 30 deletions.
15 changes: 6 additions & 9 deletions 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
Expand All @@ -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
39 changes: 18 additions & 21 deletions 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



0 comments on commit cfe6ed5

Please sign in to comment.