This commit is contained in:
cls%seawood.org 1998-09-11 01:24:33 +00:00
Родитель 82ad21a18e
Коммит 096e90e3e0
2 изменённых файлов: 18 добавлений и 3 удалений

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

@ -38,6 +38,10 @@ ifdef MODULAR_NETLIB
DIRS += module
endif
ifdef NU_CACHE
DIRS += cache/nu
endif
include $(topsrcdir)/config/rules.mk
INCLUDE += $(PUBLIC)\ldap $(PUBLIC)\security

17
network/cache/Makefile.in поставляемый
Просмотреть файл

@ -17,8 +17,8 @@
DEPTH = ../..
topsrcdir = @top_srcdir@
VPATH = @srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
@ -33,11 +33,22 @@ CSRCS = \
mkmemcac.c \
$(NULL)
ifdef NU_CACHE
CSRCS += \
nucacheproto.c \
$(NULL)
endif
EXPORTS= netcache.h mkcache.h mkmemcac.h extcache.h
EXPORTS:= $(addprefix $(srcdir)/, $(EXPORTS))
EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS))
REQUIRES = network nspr2 dbm util pref js java fileurl security layer img jtools cachelib
REQUIRES = network nspr2 dbm util pref js java fileurl security layer img jtools
ifdef NU_CACHE
REQUIRES += \
cachelib \
$(NULL)
endif
include $(topsrcdir)/config/rules.mk