source: rtems/c/src/lib/libnetworking/netinet/Makefile.in @ 3f098aed

4.104.114.84.95
Last change on this file since 3f098aed was 3f098aed, checked in by Joel Sherrill <joel.sherrill@…>, on 08/20/98 at 14:37:17

FreeBSD stack compiles for the first time (except libc/strsep.c).

  • Property mode set to 100644
File size: 1.1 KB
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_ether \
16        igmp \
17        in in_cksum in_pcb in_proto in_rmx \
18        ip_divert ip_fw ip_icmp ip_input ip_mroute ip_output \
19        raw_ip \
20        tcp_debug tcp_input tcp_output tcp_subr tcp_timer tcp_usrreq \
21        udp_usrreq
22C_FILES=$(C_PIECES:%=%.c)
23C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
24
25SRCS=$(C_FILES)
26OBJS=$(C_O_FILES)
27
28include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
29include $(RTEMS_ROOT)/make/lib.cfg
30
31#
32# Add local stuff here using +=
33#
34
35DEFINES  += -D_COMPILING_BSD_KERNEL_ -DKERNEL -DINET -DNFS \
36    -DDIAGNOSTIC -DBOOTP_COMPAT
37CPPFLAGS +=
38CFLAGS   +=
39
40#
41# Add your list of files to delete here.  The config files
42#  already know how to delete some stuff, so you may want
43#  to just run 'make clean' first to see what gets missed.
44#  'make clobber' already includes 'make clean'
45#
46
47CLEAN_ADDITIONS += $(LIB)
48CLOBBER_ADDITIONS +=
49
50all:    ${ARCH} $(LIB)
51
52$(LIB): $(SRCS) ${OBJS}
53        $(make-library)
Note: See TracBrowser for help on using the repository browser.