31 lines
484 B
Makefile
31 lines
484 B
Makefile
|
|
CAS = ../../..
|
|
TOP = $(CAS)/../..
|
|
|
|
include $(TOP)/config/CONFIG_BASE
|
|
|
|
CXXCMPLR = STRICT
|
|
|
|
PROD_LIBS := cas ca gdd Com
|
|
#
|
|
# Added winmm user32 for the non-dll build
|
|
#
|
|
SYS_PROD_LIBS_WIN32 := ws2_32 advapi32 user32
|
|
|
|
SRCS += main.cc
|
|
SRCS += directoryServer.cc
|
|
|
|
PROD := caDirServ
|
|
|
|
include $(TOP)/config/RULES.Host
|
|
|
|
pcaDirServ: $(PROD_OBJS) $(PRODDEPLIBS)
|
|
$(PURIFY) $(PROD_LINKER) $(PROD_OBJS) $(LDLIBS)
|
|
|
|
clean::
|
|
@$(RM) caDirServ
|
|
@$(RM) pcaDirServ
|
|
@$(RM) -rf Templates.DB
|
|
@$(RM) core
|
|
|