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

4.104.114.84.95
Last change on this file since f22ebf0 was 01d48bf8, checked in by Joel Sherrill <joel.sherrill@…>, on 03/28/02 at 00:49:43

2002-03-27 Ralf Corsepius <corsepiu@…>

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