source: rtems/cpukit/httpd/Makefile.am @ a6b4c0df

4.104.114.84.95
Last change on this file since a6b4c0df was a6b4c0df, checked in by Joel Sherrill <joel.sherrill@…>, on 09/01/00 at 10:57:21

2000-08-30 Joel Sherrill <joel@…>

  • Merged version 2.1 of GoAhead? webserver. This update was submitted by Antti P Miettinen <antti.p.miettinen@…>.
  • NOTES, base64.c, ejIntrn.h, emfdb.c, emfdb.h, md5.h, md5c.c, um.c, um.h: New files.
  • wbase64.c: Removed.
  • Makefile.am, 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, security.c, socket.c, sym.c, uemf.c, uemf.h, url.c, value.c, webcomp.c, webmain.c, webpage.c, webrom.c, webs.c, webs.h, websuemf.c, wsIntrn.h: Modified.
  • Property mode set to 100644
File size: 1.5 KB
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 base64.c default.c ejlex.c ejparse.c emfdb.c \
11    form.c h.c handler.c md5c.c mime.c misc.c webpage.c ringq.c rom.c \
12    security.c socket.c sym.c uemf.c um.c url.c value.c webrom.c webs.c \
13    websuemf.c webmain.c
14C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
15
16OBJS = $(C_O_FILES)
17
18H_FILES = ej.h ejIntrn.h emfdb.h md5.h uemf.h um.h webs.h wsIntrn.h
19
20include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
21include $(top_srcdir)/../../../automake/lib.am
22
23#
24# Add local stuff here using +=
25#
26
27AM_CPPFLAGS += -DWEBS -DUEMF -DOS="RTEMS"
28
29$(LIB): $(OBJS)
30        $(make-library)
31
32$(PROJECT_INCLUDE):
33        $(mkinstalldirs) $@
34
35$(PROJECT_INCLUDE)/goahead:
36        $(mkinstalldirs) $@
37
38$(PROJECT_INCLUDE)/goahead/%.h: %.h
39        $(INSTALL_DATA) $< $@
40
41$(PROJECT_INCLUDE)/rtems_webserver.h: rtems_webserver.h
42        $(INSTALL_DATA) $< $@
43
44PREINSTALL_FILES += $(PROJECT_INCLUDE) \
45    $(PROJECT_INCLUDE)/rtems_webserver.h $(PROJECT_INCLUDE)/goahead \
46    $(H_FILES:%.h=$(PROJECT_INCLUDE)/goahead/%.h)
47
48if HAS_POSIX
49all-local: $(PREINSTALL_FILES) $(ARCH) $(OBJS) $(LIB)
50endif
51
52.PRECIOUS: $(LIB)
53
54EXTRA_DIST = asp.c balloc.c default.c ej.h ejlex.c ejparse.c form.c h.c \
55    handler.c mime.c misc.c ringq.c rom.c rtems_webserver.h security.c \
56    socket.c sym.c uemf.c uemf.h um.h url.c value.c base64.c webcomp.c \
57    webmain.c webpage.c webrom.c webs.c webs.h websuemf.c wsIntrn.h
58
59include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.