source: rtems/c/src/lib/libbsp/arm/edb7312/network/Makefile.am @ 673c750

4.104.114.84.95
Last change on this file since 673c750 was 3d6669cc, checked in by Joel Sherrill <joel.sherrill@…>, on 11/13/02 at 17:55:09

2002-11-13 Jay Monkman <jtm@…>

  • New BSP.
  • .cvsignore, ChangeLog?, Makefile.am, bsp_specs, configure.ac, README, times, clock/.cvsignore, clock/Makefile.am, clock/clockdrv.c, console/.cvsignore, console/Makefile.am, console/uart.c, include/.cvsignore, include/Makefile.am, include/bsp.h, include/ep7312.h, irq/.cvsignore, irq/Makefile.am, irq/bsp_irq_asm.S, irq/bsp_irq_init.c, irq/irq.c, irq/irq.h, network/Makefile.am, network/network.c, start/.cvsignore, start/Makefile.am, start/start.S, startup/.cvsignore, startup/Makefile.am, startup/bspstart.c, startup/exit.c, startup/linkcmds, timer/.cvsignore, timer/Makefile.am, timer/timer.c, wrapup/.cvsignore, wrapup/Makefile.am: New file.
  • Property mode set to 100644
File size: 833 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 $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
15include $(top_srcdir)/../../../../../../automake/compile.am
16include $(top_srcdir)/../../../../../../automake/lib.am
17
18#
19# (OPTIONAL) Add local stuff here using +=
20#
21AM_CPPFLAGS += -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
22
23$(PROJECT_INCLUDE):
24        $(mkinstalldirs) $@
25
26$(PROJECT_INCLUDE)/%.h: %.h
27        $(INSTALL_DATA) $< $@
28
29PREINSTALL_FILES = $(PROJECT_INCLUDE) \
30    $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
31
32$(PGM): $(OBJS)
33        $(make-rel)
34
35# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
36
37all-local: $(ARCH) $(OBJS) $(PGM)
38
39.PRECIOUS: $(PGM)
40
41EXTRA_DIST = network.c
42
43include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.