summaryrefslogtreecommitdiff
path: root/lib/tests
diff options
context:
space:
mode:
authorwtc%netscape.com <devnull@localhost>1999-02-25 19:46:30 +0000
committerwtc%netscape.com <devnull@localhost>1999-02-25 19:46:30 +0000
commitc5157c5a63b0b98e55bb6d518d0237453ef36bf9 (patch)
tree1bc52e4de44f373d16405f7a609643f6074de8de /lib/tests
parentd0c59fb5b342ef6979a4ba3894159c50bbbe06f7 (diff)
downloadnspr-hg-c5157c5a63b0b98e55bb6d518d0237453ef36bf9.tar.gz
Link the tests against $(LIBPLC) $(LIBPLDS) $(LIBPR).
Diffstat (limited to 'lib/tests')
-rw-r--r--lib/tests/Makefile8
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/tests/Makefile b/lib/tests/Makefile
index 540fdec4..445fce56 100644
--- a/lib/tests/Makefile
+++ b/lib/tests/Makefile
@@ -30,8 +30,8 @@ OS_CFLAGS = $(OS_EXE_CFLAGS)
endif
CSRCS = \
- event.c \
string.c \
+ event.c \
base64t.c
ifeq ($(OS_ARCH), WINNT)
@@ -66,8 +66,6 @@ LIBPLDS= $(DIST)/lib/libplds$(MOD_VERSION).$(LIB_SUFFIX)
endif
endif
-LIBPR += $(LIBPLDS)
-
ifneq ($(OS_ARCH), WINNT)
PWD = $(shell pwd)
endif
@@ -185,10 +183,10 @@ ifeq ($(OS_TARGET),WIN16)
echo winsock.lib >>w16link
wlink @w16link.
else
- link $(LDOPTS) $< $(LIBPR) $(LIBPLC) wsock32.lib -out:$@
+ link $(LDOPTS) $< $(LIBPLC) $(LIBPLDS) $(LIBPR) wsock32.lib -out:$@
endif
else
- $(CC) $(XCFLAGS) $< $(LDOPTS) $(LIBPR) $(LIBPLC) $(EXTRA_LIBS) -o $@
+ $(CC) $(XCFLAGS) $< $(LDOPTS) $(LIBPLC) $(LIBPLDS) $(LIBPR) $(EXTRA_LIBS) -o $@
endif
endif