source: rtems/c/src/lib/libbsp/arm/edb7312/network/Makefile.am @ 8cff79fb

4.104.114.84.95
Last change on this file since 8cff79fb was d8abd37, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/16/03 at 12:33:52

2003-08-16 Ralf Corsepius <corsepiu@…>

Makefile.am: Reflect having moved automake.
clock/Makefile.am: Reflect having moved automake.
console/Makefile.am: Reflect having moved automake.
include/Makefile.am: Reflect having moved automake.
irq/Makefile.am: Reflect having moved automake.
network/Makefile.am: Reflect having moved automake.
start/Makefile.am: Reflect having moved automake.
startup/Makefile.am: Reflect having moved automake.
timer/Makefile.am: Reflect having moved automake.
wrapup/Makefile.am: Reflect having moved automake.

  • Property mode set to 100644
File size: 789 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: $(ARCH) $(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.