source: rtems/cpukit/libnetworking/rtems/Makefile.am @ dbba1d6d

4.104.114.84.95
Last change on this file since dbba1d6d was 01d48bf8, checked in by Joel Sherrill <joel.sherrill@…>, on 03/28/02 at 00:49:43

2002-03-27 Ralf Corsepius <corsepiu@…>

  • configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]).
  • arpa/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • kern/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Makefile.am: Remove AUTOMAKE_OPTIONS.
  • lib/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • libc/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • machine/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • net/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • netinet/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • nfs/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • pppd/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • rtems/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • rtems_servers/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • rtems_telnetd/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • rtems_webserver/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • sys/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • vm/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Property mode set to 100644
File size: 1.3 KB
Line 
1##
2## $Id$
3##
4
5
6
7
8include_rtemsdir = $(includedir)/rtems
9
10LIBNAME = lib.a
11LIB = $(ARCH)/$(LIBNAME)
12
13C_FILES = sghostname.c issetugid.c rtems_glue.c rtems_syscall.c \
14    rtems_bootp.c rtems_showmbuf.c rtems_showroute.c rtems_showifstat.c \
15    rtems_showipstat.c rtems_showicmpstat.c rtems_showtcpstat.c \
16    rtems_showudpstat.c rtems_select.c
17C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
18
19OBJS = $(C_O_FILES)
20
21include_rtems_HEADERS = rtems_bsdnet.h rtems_bsdnet_internal.h tftp.h
22
23PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems \
24    $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
25
26$(PROJECT_INCLUDE)/rtems:
27        @$(mkinstalldirs) $@
28
29$(PROJECT_INCLUDE)/rtems/%.h: %.h
30        $(INSTALL_DATA) $< $@
31
32include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
33include $(top_srcdir)/../../../automake/compile.am
34include $(top_srcdir)/../../../automake/lib.am
35
36#
37# Add local stuff here using +=
38#
39
40AM_CPPFLAGS += -D_COMPILING_BSD_KERNEL_ -DKERNEL -DINET -DNFS -DDIAGNOSTIC \
41    -DBOOTP_COMPAT
42
43$(LIB): $(OBJS)
44        $(make-library)
45
46all-local: $(PREINSTALL_FILES) $(ARCH) $(OBJS) $(LIB)
47
48.PRECIOUS: $(LIB)
49
50EXTRA_DIST = issetugid.c rtems_bootp.c rtems_glue.c rtems_select.c \
51    rtems_showicmpstat.c rtems_showifstat.c rtems_showipstat.c \
52    rtems_showmbuf.c rtems_showroute.c rtems_showtcpstat.c \
53    rtems_showudpstat.c rtems_syscall.c sghostname.c
54
55include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.