summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseawood%netscape.com <devnull@localhost>2002-11-08 14:41:41 +0000
committerseawood%netscape.com <devnull@localhost>2002-11-08 14:41:41 +0000
commit03fd60869c5895d70d4af3952d8c5d468da8224c (patch)
treeac0e69eed9a33c9fc043e40d747464504a525536
parenta5348d543c7446006a0127a7ee5cf2f8263df5f6 (diff)
downloadnss-hg-03fd60869c5895d70d4af3952d8c5d468da8224c.tar.gz
Rename LIBS variable to PROG_LIBS to remove any misconceptions about its purpose.
-rw-r--r--dbm/tests/Makefile.in6
1 files changed, 2 insertions, 4 deletions
diff --git a/dbm/tests/Makefile.in b/dbm/tests/Makefile.in
index 96cbdf8b5..7819ef890 100644
--- a/dbm/tests/Makefile.in
+++ b/dbm/tests/Makefile.in
@@ -27,9 +27,7 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
MODULE = dbm
-PROGRAM = lots$(BIN_SUFFIX)
-
-CSRCS = lots.c
+SIMPLE_PROGRAMS = lots$(BIN_SUFFIX)
ifeq ($(OS_ARCH),WINNT)
EXTRA_DSO_LIBS = dbm$(MOZ_BITS)
@@ -37,7 +35,7 @@ else
EXTRA_DSO_LIBS = mozdbm_s
endif
-LIBS = $(EXTRA_DSO_LIBS)
+PROG_LIBS = $(EXTRA_DSO_LIBS)
include $(topsrcdir)/config/rules.mk