Annotation of embedaddon/strongswan/src/manager/Makefile.am, revision 1.1

1.1     ! misho       1: managerdir = ${ipsecdir}/manager
        !             2: 
        !             3: manager_PROGRAMS = manager.fcgi
        !             4: 
        !             5: manager_fcgi_SOURCES = \
        !             6: main.c manager.c manager.h gateway.h gateway.c storage.h storage.c xml.h xml.c \
        !             7: controller/auth_controller.c controller/auth_controller.h \
        !             8: controller/ikesa_controller.c controller/ikesa_controller.h \
        !             9: controller/control_controller.c controller/control_controller.h \
        !            10: controller/config_controller.c controller/config_controller.h \
        !            11: controller/gateway_controller.c controller/gateway_controller.h
        !            12: 
        !            13: manager_fcgi_LDADD = $(top_builddir)/src/libstrongswan/libstrongswan.la $(top_builddir)/src/libfast/libfast.la ${xml_LIBS}
        !            14: main.o :       $(top_builddir)/config.status
        !            15: 
        !            16: AM_CPPFLAGS = \
        !            17:        -I$(top_srcdir)/src/libstrongswan \
        !            18:        -I$(top_srcdir)/src/libfast \
        !            19:        -DIPSECDIR=\"${ipsecdir}\" \
        !            20:        -DIPSEC_PIDDIR=\"${piddir}\" \
        !            21:        -DPLUGINS=\""${manager_plugins}\""
        !            22: 
        !            23: AM_CFLAGS = \
        !            24:        ${xml_CFLAGS} \
        !            25:        $(PLUGIN_CFLAGS)
        !            26: 
        !            27: # Don't forget to add templates to EXTRA_DIST !!! How to automate?
        !            28: manager_templatesdir = ${managerdir}/templates
        !            29: manager_templates_DATA = templates/header.cs templates/footer.cs templates/error.cs
        !            30: 
        !            31: manager_templates_authdir = ${manager_templatesdir}/auth
        !            32: manager_templates_auth_DATA = templates/auth/login.cs
        !            33: 
        !            34: manager_templates_gatewaydir = ${manager_templatesdir}/gateway
        !            35: manager_templates_gateway_DATA = templates/gateway/list.cs
        !            36: 
        !            37: manager_templates_ikesadir = ${manager_templatesdir}/ikesa
        !            38: manager_templates_ikesa_DATA = templates/ikesa/list.cs
        !            39: 
        !            40: manager_templates_controldir = ${manager_templatesdir}/control
        !            41: manager_templates_control_DATA = templates/control/result.cs
        !            42: 
        !            43: manager_templates_configdir = ${manager_templatesdir}/config
        !            44: manager_templates_config_DATA = templates/config/list.cs
        !            45: 
        !            46: manager_templates_staticdir = ${manager_templatesdir}/static
        !            47: manager_templates_static_DATA = templates/static/style.css templates/static/script.js templates/static/jquery.js \
        !            48: templates/static/pipe.png templates/static/pipe-good.png templates/static/pipe-bad.png \
        !            49: templates/static/pipe-thin.png templates/static/pipe-thin-left.png templates/static/pipe-thin-right.png \
        !            50: templates/static/pipe-thin-green.png templates/static/pipe-thin-left-green.png templates/static/pipe-thin-right-green.png \
        !            51: templates/static/gateway-left.png templates/static/client-left.png templates/static/strongswan.png \
        !            52: templates/static/router.png templates/static/gateway-right.png templates/static/client-right.png \
        !            53: templates/static/close.png templates/static/initiate.png
        !            54: 
        !            55: EXTRA_DIST = templates/header.cs templates/footer.cs templates/error.cs \
        !            56: templates/auth/login.cs templates/gateway/list.cs templates/ikesa/list.cs \
        !            57: templates/config/list.cs templates/control/result.cs \
        !            58: templates/static/style.css templates/static/script.js templates/static/jquery.js \
        !            59: templates/static/pipe.png templates/static/pipe-good.png templates/static/pipe-bad.png \
        !            60: templates/static/pipe-thin.png templates/static/pipe-thin-left.png templates/static/pipe-thin-right.png \
        !            61: templates/static/pipe-thin-green.png templates/static/pipe-thin-left-green.png templates/static/pipe-thin-right-green.png \
        !            62: templates/static/gateway-left.png templates/static/client-left.png templates/static/strongswan.png \
        !            63: templates/static/router.png templates/static/gateway-right.png templates/static/client-right.png \
        !            64: templates/static/close.png templates/static/initiate.png

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>