source: rtems/cpukit/httpd/Makefile.am @ 4108ae8

4.104.114.84.95
Last change on this file since 4108ae8 was 4078e82, checked in by Ralf Corsepius <ralf.corsepius@…>, on 07/25/03 at 06:15:38

2003-07-25 Ralf Corsepius <corsepiu@…>

  • configure.ac: Remove (Merged into ../configure.ac).
  • .cvsignore, Makefile.am, pppd/Makefile.am, rtems_servers/Makefile.am, rtems_telnetd/Makefile.am, rtems_webserver/Makefile.am, wrapup/Makefile.am: Reflect having merged configure.ac into ../configure.ac
  • Property mode set to 100644
File size: 1.6 KB
Line 
1##
2## $Id$
3##
4
5LIBNAME = lib.a
6LIB = $(ARCH)/$(LIBNAME)
7
8C_FILES = asp.c balloc.c default.c ejlex.c ejparse.c emfdb.c form.c \
9    h.c handler.c md5c.c mime.c misc.c webpage.c ringq.c rom.c security.c \
10    sock.c socket.c sym.c uemf.c um.c url.c value.c wbase64.c webrom.c webs.c \
11    websuemf.c webmain.c
12OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
13
14H_FILES = ej.h ejIntrn.h emfdb.h md5.h uemf.h um.h webs.h wsIntrn.h
15
16include $(top_srcdir)/../../automake/compile.am
17include $(top_srcdir)/../../automake/lib.am
18
19#
20# Add local stuff here using +=
21#
22
23AM_CPPFLAGS += -DWEBS -DUEMF -DOS="RTEMS"
24
25$(LIB): $(OBJS)
26        $(make-library)
27
28$(PROJECT_INCLUDE):
29        $(mkinstalldirs) $@
30
31$(PROJECT_INCLUDE)/goahead:
32        $(mkinstalldirs) $@
33
34$(PROJECT_INCLUDE)/goahead/%.h: %.h
35        $(INSTALL_DATA) $< $@
36
37$(PROJECT_INCLUDE)/rtems_webserver.h: rtems_webserver.h
38        $(INSTALL_DATA) $< $@
39
40PREINSTALL_FILES = $(PROJECT_INCLUDE) $(PROJECT_INCLUDE)/rtems_webserver.h \
41    $(PROJECT_INCLUDE)/goahead $(H_FILES:%.h=$(PROJECT_INCLUDE)/goahead/%.h)
42
43if HAS_NETWORKING
44if HAS_POSIX
45include_goaheaddir = $(includedir)/goahead
46
47include_HEADERS = rtems_webserver.h
48include_goahead_HEADERS = $(H_FILES)
49
50all-local: $(PREINSTALL_FILES) $(ARCH) $(OBJS) $(LIB)
51endif
52endif
53
54.PRECIOUS: $(LIB)
55
56EXTRA_DIST = asp.c balloc.c default.c ej.h ejlex.c ejparse.c form.c h.c \
57    handler.c mime.c misc.c ringq.c rom.c rtems_webserver.h security.c \
58    sock.c socket.c sym.c uemf.c uemf.h um.h url.c value.c wbase64.c webcomp.c \
59    webmain.c webpage.c webrom.c webs.c webs.h websuemf.c wsIntrn.h
60
61include $(top_srcdir)/../../automake/local.am
Note: See TracBrowser for help on using the repository browser.