source: rtems/c/src/libnetworking/net/Makefile.in @ 888497d

4.104.114.84.95
Last change on this file since 888497d was 888497d, checked in by Joel Sherrill <joel.sherrill@…>, on 08/20/98 at 12:45:04

Base files

  • Property mode set to 100644
File size: 907 bytes
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7VPATH = @srcdir@
8RTEMS_ROOT = @top_srcdir@
9PROJECT_ROOT = @PROJECT_ROOT@
10
11LIBNAME=lib.a
12LIB=${ARCH}/${LIBNAME}
13
14# C and C++ source names, if any, go here -- minus the .c or .cc
15C_PIECES=if if_ethersubr if_loop \
16        radix route rtsock \
17        raw_cb raw_usrreq
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  +=
32CPPFLAGS +=
33CFLAGS   +=
34
35#
36# Add your list of files to delete here.  The config files
37#  already know how to delete some stuff, so you may want
38#  to just run 'make clean' first to see what gets missed.
39#  'make clobber' already includes 'make clean'
40#
41
42CLEAN_ADDITIONS += $(LIB)
43CLOBBER_ADDITIONS +=
44
45all:    ${ARCH} $(LIB)
46
47$(LIB): $(SRCS) ${OBJS}
48        $(make-library)
Note: See TracBrowser for help on using the repository browser.