source: rtems/c/src/libnetworking/nfs/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: 838 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= bootp_subr
16C_FILES=$(C_PIECES:%=%.c)
17C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
18
19SRCS=$(C_FILES)
20OBJS=$(C_O_FILES)
21
22include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
23include $(RTEMS_ROOT)/make/lib.cfg
24
25#
26# Add local stuff here using +=
27#
28
29DEFINES  +=
30CPPFLAGS +=
31CFLAGS   +=
32
33#
34# Add your list of files to delete here.  The config files
35#  already know how to delete some stuff, so you may want
36#  to just run 'make clean' first to see what gets missed.
37#  'make clobber' already includes 'make clean'
38#
39
40CLEAN_ADDITIONS += $(LIB)
41CLOBBER_ADDITIONS +=
42
43all:    ${ARCH} $(LIB)
44
45$(LIB): $(SRCS) ${OBJS}
46        $(make-library)
Note: See TracBrowser for help on using the repository browser.