source: rtems/c/src/lib/libbsp/arm/edb7312/network/Makefile.am @ 5b62726f

4.104.114.84.95
Last change on this file since 5b62726f was 5b62726f, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/02/03 at 05:39:32

2003-12-02 Ralf Corsepius <corsepiu@…>

  • clock/Makefile.am: Remove all-local: $(ARCH).
  • console/Makefile.am: Remove all-local: $(ARCH).
  • irq/Makefile.am: Remove all-local: $(ARCH).
  • network/Makefile.am: Remove all-local: $(ARCH).
  • start/Makefile.am: Remove all-local: $(ARCH).
  • startup/Makefile.am: Remove all-local: $(ARCH).
  • timer/Makefile.am: Remove all-local: $(ARCH).
  • wrapup/Makefile.am: Remove all-local: $(ARCH).
  • Property mode set to 100644
File size: 781 bytes
Line 
1##
2## $Id$
3##
4
5PGM = $(ARCH)/network.rel
6
7C_FILES = network.c
8C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
9
10include_HEADERS =
11
12OBJS = $(C_O_FILES)
13
14include $(top_srcdir)/../../../../automake/compile.am
15include $(top_srcdir)/../../../../automake/lib.am
16
17#
18# (OPTIONAL) Add local stuff here using +=
19#
20AM_CPPFLAGS += -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
21
22$(PROJECT_INCLUDE):
23        $(mkinstalldirs) $@
24
25$(PROJECT_INCLUDE)/%.h: %.h
26        $(INSTALL_DATA) $< $@
27
28PREINSTALL_FILES = $(PROJECT_INCLUDE) \
29    $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
30
31$(PGM): $(OBJS)
32        $(make-rel)
33
34# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
35
36if HAS_NETWORKING
37all-local: $(OBJS) $(PGM)
38endif
39
40.PRECIOUS: $(PGM)
41
42EXTRA_DIST = network.c
43
44include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.