mirror of
https://github.com/samba-team/samba.git
synced 2025-01-14 19:24:43 +03:00
28 lines
530 B
Makefile
28 lines
530 B
Makefile
# web server subsystem
|
|
|
|
#######################
|
|
# Start SUBSYSTEM ESP
|
|
[SUBSYSTEM::ESP]
|
|
ADD_OBJ_FILES = \
|
|
web_server/esp/esp.o \
|
|
web_server/esp/espProcs.o
|
|
REQUIRED_SUBSYSTEMS = EJS
|
|
NOPROTO=YES
|
|
# End SUBSYSTEM ESP
|
|
#######################
|
|
|
|
|
|
|
|
#######################
|
|
# Start SUBSYSTEM WEB
|
|
[SUBSYSTEM::WEB]
|
|
INIT_OBJ_FILES = \
|
|
web_server/web_server.o
|
|
ADD_OBJ_FILES = \
|
|
web_server/http.o \
|
|
web_server/tls.o \
|
|
web_server/tlscert.o
|
|
REQUIRED_SUBSYSTEMS = ESP EXT_LIB_GNUTLS SMBCALLS
|
|
# End SUBSYSTEM WEB
|
|
#######################
|