summaryrefslogtreecommitdiffstats
path: root/cpukit/httpd
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-01-15 03:47:28 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-01-15 03:47:28 +0000
commit633456e9200c909c9aad6ab7fae50b70b829999d (patch)
treebc8567215cf86ce0c3c664215892de8ca2b31c35 /cpukit/httpd
parent2004-01-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-633456e9200c909c9aad6ab7fae50b70b829999d.tar.bz2
2004-01-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Remove wrapup. * pppd/Makefile.am: Build libpppd. Use automake-compilation rules. * rtems_servers/Makefile.am: Build libftpd. Use automake-compilation rules. * rtems_telnetd/Makefile.am: Build libtelnetd. Use automake-compilation rules. * rtems_webserver/Makefile.am: Build libhttpd. Use automake-compilation rules. * wrapup/Makefile.am: Remove (Unused).
Diffstat (limited to 'cpukit/httpd')
-rw-r--r--cpukit/httpd/Makefile.am42
1 files changed, 19 insertions, 23 deletions
diff --git a/cpukit/httpd/Makefile.am b/cpukit/httpd/Makefile.am
index 129382ee95..85c24a4ac7 100644
--- a/cpukit/httpd/Makefile.am
+++ b/cpukit/httpd/Makefile.am
@@ -2,27 +2,14 @@
## $Id$
##
-LIBNAME = lib.a
-LIB = $(ARCH)/$(LIBNAME)
-
-C_FILES = asp.c balloc.c default.c ejlex.c ejparse.c emfdb.c form.c h.c \
- handler.c md5c.c mime.c misc.c webpage.c ringq.c rom.c security.c sock.c \
- socket.c sym.c uemf.c um.c url.c value.c wbase64.c webrom.c webs.c \
- websuemf.c webmain.c
-OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
-
include $(top_srcdir)/automake/compile.am
include $(top_srcdir)/automake/lib.am
-#
-# Add local stuff here using +=
-#
+EXTRA_LIBRARIES =
+CLEANFILES =
AM_CPPFLAGS += -DWEBS -DUEMF -DOS="RTEMS"
-$(LIB): $(OBJS)
- $(make-library)
-
if HAS_NETWORKING
if HAS_POSIX
include_goaheaddir = $(includedir)/goahead
@@ -31,17 +18,26 @@ include_HEADERS = rtems_webserver.h
include_goahead_HEADERS = ej.h ejIntrn.h emfdb.h md5.h uemf.h um.h webs.h \
wsIntrn.h
-all-local: $(PREINSTALL_FILES) $(OBJS) $(LIB)
+EXTRA_LIBRARIES += libhttpd.a
+CLEANFILES += libhttpd.a
+libhttpd_a_SOURCES = asp.c balloc.c default.c ejlex.c ejparse.c emfdb.c \
+ form.c h.c handler.c md5c.c mime.c misc.c webpage.c ringq.c rom.c \
+ security.c sock.c socket.c sym.c uemf.c um.c url.c value.c wbase64.c \
+ webrom.c webs.c websuemf.c webmain.c
+libhttpd_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V)
+
+EXTRA_LIBRARIES += libhttpd_g.a
+CLEANFILES += libhttpd_g.a
+libhttpd_g_a_SOURCES = $(libhttpd_a_SOURCES)
+libhttpd_g_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_DEBUG_V)
+
+noinst_DATA = libhttpd$(LIB_VARIANT).a
endif
endif
-.PRECIOUS: $(LIB)
+all-local: $(PREINSTALL_FILES)
-EXTRA_DIST = asp.c balloc.c default.c ej.h ejlex.c ejparse.c form.c h.c \
- handler.c mime.c misc.c ringq.c rom.c rtems_webserver.h security.c \
- sock.c socket.c sym.c uemf.c uemf.h um.h url.c value.c wbase64.c \
- webcomp.c webmain.c webpage.c webrom.c webs.c webs.h websuemf.c \
- wsIntrn.h
+EXTRA_DIST = webcomp.c webpage.c
PREINSTALL_FILES =
@@ -95,6 +91,6 @@ PREINSTALL_FILES += $(PROJECT_INCLUDE)/goahead/wsIntrn.h
endif
endif
-CLEANFILES = $(PREINSTALL_FILES)
+CLEANFILES += $(PREINSTALL_FILES)
include $(top_srcdir)/automake/local.am