source: rtems/cpukit/httpd/Makefile.am @ 4bf1801

4.104.114.84.95
Last change on this file since 4bf1801 was 4bf1801, checked in by Joel Sherrill <joel.sherrill@…>, on 02/03/00 at 13:21:38

Patches rtems-rc-20000118-7.diff from Ralf Corsepius <corsepiu@…>
that contains the automake files for libnetworking plus a couple of
minor fixes. [Now only one unused/unsupported Makefile.in remains
(./c/src/lib/libbsp/hppa1.1/pxfl/Makefile.in).]

To apply:

patch -p1 < rtems-rc-20000118-7.diff
/bin/sh rtems-rc-20000118-7.rm
/bin/sh rtems-rc-20000118-7.add
./bootstrap

Notes:

  • I have tested this one by building all BSPs for m68k, powerpc, sh and unix with toolchains built since last weekend.
  • I did not touch libnetworking's directory layout.
  • Property mode set to 100644
File size: 1005 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7LIBNAME = lib.a
8LIB = $(ARCH)/$(LIBNAME)
9
10C_FILES = asp.c balloc.c wbase64.c default.c ejlex.c ejparse.c form.c h.c \
11    handler.c mime.c misc.c webpage.c ringq.c rom.c security.c socket.c \
12    sym.c uemf.c url.c value.c webcomp.c webrom.c webs.c websuemf.c \
13    webmain.c
14C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
15
16OBJS = $(C_O_FILES)
17
18include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
19include $(top_srcdir)/../../../automake/lib.am
20
21#
22# Add local stuff here using +=
23#
24
25AM_CPPFLAGS += -DWEBS -DUEMF -DOS="RTEMS"
26
27$(LIB): $(OBJS)
28        $(make-library)
29
30if HAS_POSIX
31all-local: $(ARCH) $(OBJS) $(LIB)
32endif
33
34.PRECIOUS: $(LIB)
35
36EXTRA_DIST = asp.c balloc.c default.c ej.h ejlex.c ejparse.c form.c h.c \
37    handler.c mime.c misc.c ringq.c rom.c rtems_webserver.h security.c \
38    socket.c sym.c uemf.c uemf.h url.c value.c wbase64.c webcomp.c webmain.c \
39    webpage.c webrom.c webs.c webs.h websuemf.c wsIntrn.h
40
41include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.