6c2bb03d7c
* NEW: Support for the new 'Public' project virtual directory, which is '.public' on the disk. [SCRIPTER] * NEW: Support for a new '-f- option that compile the script with JIT compilation enabled. [GB.DESKTOP] * BUG: Remove _Desktop.ActivateWindow() method. [GB.HTTPD] * NEW: The embedded HTTP server now can serve static files located in the '.public' hidden project directory. git-svn-id: svn://localhost/gambas/trunk@5226 867c0c6c-44f3-4631-809d-bfa615b0a4ec
20 lines
442 B
Makefile
20 lines
442 B
Makefile
COMPONENT = gb.httpd
|
|
include $(top_srcdir)/component.am
|
|
|
|
gblib_LTLIBRARIES = gb.httpd.la
|
|
|
|
gb_httpd_la_LIBADD = @HTTPD_LIB@
|
|
gb_httpd_la_LDFLAGS = -module @LD_FLAGS@ @HTTPD_LDFLAGS@
|
|
gb_httpd_la_CPPFLAGS = @HTTPD_INC@
|
|
|
|
gb_httpd_la_SOURCES = main.c main.h \
|
|
fdwatch.h fdwatch.c \
|
|
libhttpd.h libhttpd.c \
|
|
match.h match.c \
|
|
mime_encodings.h \
|
|
mime_types.h \
|
|
tdate_parse.h tdate_parse.c \
|
|
thttpd.h thttpd.c \
|
|
timers.h timers.c \
|
|
version.h
|
|
|