source: rtems/c/src/lib/libbsp/arm/vegaplus/irq/Makefile.am @ 3777ea14

4.104.114.84.95
Last change on this file since 3777ea14 was 70633be1, checked in by Joel Sherrill <joel.sherrill@…>, on 03/28/02 at 00:38:33

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

  • configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]).
  • clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Makefile.am: Remove AUTOMAKE_OPTIONS.
  • console/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • include/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • irq/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • start/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Property mode set to 100644
File size: 983 bytes
Line 
1##
2## $Id$
3##
4
5
6VPATH = @srcdir@:@srcdir@/../../shared/irq
7
8PGM = $(ARCH)/irq.rel
9
10C_FILES = irq.c irq_init.c bsp_irq_init.c
11C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
12
13S_FILES = irq_asm.S bsp_irq_asm.S
14S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
15
16include_HEADERS = irq.h
17
18OBJS = $(C_O_FILES) $(S_O_FILES)
19
20include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
21include $(top_srcdir)/../../../../../../automake/compile.am
22include $(top_srcdir)/../../../../../../automake/lib.am
23
24#
25# (OPTIONAL) Add local stuff here using +=
26#
27
28AM_CPPFLAGS += -I$(srcdir)
29
30$(PROJECT_INCLUDE):
31        $(mkinstalldirs) $@
32
33$(PROJECT_INCLUDE)/%.h: %.h
34        $(INSTALL_DATA) $< $@
35
36PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
37
38$(PGM): $(OBJS)
39        $(make-rel)
40
41# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
42
43all-local: $(ARCH) $(OBJS) $(PGM)
44
45.PRECIOUS: $(PGM)
46
47EXTRA_DIST = bsp_irq_asm.S bsp_irq_init.c irq.c
48
49include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.