source: rtems/c/src/lib/libnetworking/rtems_servers/Makefile.in @ 1c0a186b

4.104.114.84.95
Last change on this file since 1c0a186b was 1c0a186b, checked in by Joel Sherrill <joel.sherrill@…>, on 03/17/99 at 15:53:13

Temporarily took rtems_servers directory out of the build tree since there
are build issues with it.

  • Property mode set to 100644
File size: 933 bytes
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7VPATH = @srcdir@
8RTEMS_ROOT = @top_srcdir@
9PROJECT_ROOT = @PROJECT_ROOT@
10
11INSTALL = @INSTALL@
12
13LIBNAME=lib.a
14LIB=${ARCH}/${LIBNAME}
15
16# C and C++ source names, if any, go here -- minus the .c or .cc
17C_PIECES=ftpd
18C_FILES=$(C_PIECES:%=%.c)
19C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
20
21SRCS=$(C_FILES)
22OBJS=$(C_O_FILES)
23
24include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
25include $(RTEMS_ROOT)/make/lib.cfg
26
27#
28# Add local stuff here using +=
29#
30
31DEFINES  += -D_COMPILING_BSD_KERNEL_ -DKERNEL -DINET -DNFS \
32    -DDIAGNOSTIC -DBOOTP_COMPAT
33CPPFLAGS +=
34CFLAGS   +=
35
36#
37# Add your list of files to delete here.  The config files
38#  already know how to delete some stuff, so you may want
39#  to just run 'make clean' first to see what gets missed.
40#  'make clobber' already includes 'make clean'
41#
42
43CLEAN_ADDITIONS += $(LIB)
44CLOBBER_ADDITIONS +=
45
46all:    ${ARCH} $(LIB)
47
48$(LIB): $(SRCS) ${OBJS}
49        $(make-library)
Note: See TracBrowser for help on using the repository browser.