source: rtems/c/src/libnetworking/rtems_webserver/Makefile.in @ 9f4868c

4.104.114.84.95
Last change on this file since 9f4868c was 9f4868c, checked in by Joel Sherrill <joel.sherrill@…>, on 11/23/99 at 13:57:02

Miscellaneous patches from Ralf Corsepius <corsepiu@…>
that are part of the Makefile.am conversion effort but were missed
in the previous commits.

  • Property mode set to 100644
File size: 1.3 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8top_builddir = ..
9subdir = rtems_webserver
10
11RTEMS_ROOT = @RTEMS_ROOT@
12PROJECT_ROOT = @PROJECT_ROOT@
13
14VPATH = @srcdir@
15
16LIBNAME = lib.a
17LIB = ${ARCH}/${LIBNAME}
18
19# C and C++ source names, if any, go here -- minus the .c or .cc
20C_PIECES = asp balloc wbase64 default ejlex ejparse form h handler mime misc \
21    webpage ringq rom security socket sym uemf url value webcomp webrom webs \
22    websuemf webmain
23C_FILES = $(C_PIECES:%=%.c)
24C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)
25
26SRCS = $(C_FILES)
27OBJS = $(C_O_FILES)
28
29include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
30include $(RTEMS_ROOT)/make/lib.cfg
31
32INSTALL_CHANGE = @INSTALL_CHANGE@
33
34#
35# Add local stuff here using +=
36#
37
38DEFINES += -DWEBS -DUEMF -DOS="RTEMS"
39CPPFLAGS +=
40CFLAGS +=
41
42#
43# Add your list of files to delete here.  The config files
44#  already know how to delete some stuff, so you may want
45#  to just run 'make clean' first to see what gets missed.
46#  'make clobber' already includes 'make clean'
47#
48
49CLEAN_ADDITIONS += $(LIB)
50CLOBBER_ADDITIONS +=
51
52all: ${ARCH} $(LIB)
53
54$(LIB): $(SRCS) ${OBJS}
55        $(make-library)
56
57Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
58        cd $(top_builddir) \
59         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
Note: See TracBrowser for help on using the repository browser.