source: rtems/cpukit/shttpd/Makefile.am @ 39f67789

4.104.114.84.95
Last change on this file since 39f67789 was 39f67789, checked in by Ralf Corsepius <ralf.corsepius@…>, on 06/11/07 at 13:33:12

2007-06-11 Ralf Corsépius <ralf.corsepius@…>

  • shttpd/Makefile.am: New.
  • Property mode set to 100644
File size: 1.1 KB
Line 
1include $(top_srcdir)/automake/compile.am
2
3if NEWLIB
4include_shttpddir = $(includedir)/shttpd
5
6project_lib_LIBRARIES = libshttpd.a
7libshttpd_a_CPPFLAGS = $(AM_CPPFLAGS)
8
9SRCS=           string.c shttpd.c log.c auth.c md5.c \
10                cgi.c mime_type.c config.c \
11                io_file.c io_socket.c io_ssl.c io_emb.c io_dir.c io_cgi.c
12HDRS=           defs.h llist.h shttpd.h std_includes.h io.h md5.h ssl.h \
13                compat_unix.h compat_win32.h compat_rtems.h
14
15libshttpd_a_SOURCES = $(SRCS) $(HDRS)
16libshttpd_a_SOURCES += compat_rtems.c
17include_shttpd_HEADERS = shttpd.h
18
19# Possible flags: (in brackets are rough numbers for 'gcc -O2' on i386)
20# -DHAVE_MD5            - use system md5 library (-2kb)
21# -DNDEBUG              - strip off all debug code (-5kb)
22# -D_DEBUG              - build debug version (very noisy) (+6kb)
23# -DNO_CGI              - disable CGI support (-5kb)
24# -DNO_SSL              - disable SSL functionality (-2kb)
25# -DNO_AUTH             - disable authorization support (-4kb)
26# -DNO_GUI              - Win32 only. Build console version, no GUI
27# -DCONFIG=\"file\"     - use `file' as the default config file
28endif
29
30include $(srcdir)/preinstall.am
31include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.