source: rtems/c/src/libnetworking/rtems/Makefile.am @ 01d48bf8

4.104.114.84.95
Last change on this file since 01d48bf8 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
RevLine 
[df49c60]1##
[4bf1801]2## $Id$
[df49c60]3##
[4bf1801]4
5
[e6d8fe47]6
7
8include_rtemsdir = $(includedir)/rtems
9
[4bf1801]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
[e6d8fe47]21include_rtems_HEADERS = rtems_bsdnet.h rtems_bsdnet_internal.h tftp.h
[df49c60]22
[b68e01c5]23PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems \
[e6d8fe47]24    $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
[df49c60]25
26$(PROJECT_INCLUDE)/rtems:
27        @$(mkinstalldirs) $@
28
29$(PROJECT_INCLUDE)/rtems/%.h: %.h
30        $(INSTALL_DATA) $< $@
31
[4bf1801]32include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
[9b28bea5]33include $(top_srcdir)/../../../automake/compile.am
[4bf1801]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
[df49c60]46all-local: $(PREINSTALL_FILES) $(ARCH) $(OBJS) $(LIB)
[4bf1801]47
48.PRECIOUS: $(LIB)
49
[9b28bea5]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
[4bf1801]54
55include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.