Link the tests against $(LIBPLC) $(LIBPLDS) $(LIBPR).

This commit is contained in:
wtc%netscape.com 1999-02-25 19:46:30 +00:00
Родитель 4abb853003
Коммит 5eefa24cc2
1 изменённых файлов: 3 добавлений и 5 удалений

Просмотреть файл

@ -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