source: rtems/c/src/lib/libbsp/i386/pc386/timer/Makefile.am @ 80052531

4.104.114.84.95
Last change on this file since 80052531 was a5417074, checked in by Joel Sherrill <joel.sherrill@…>, on 09/05/00 at 15:42:23

2000-09-04 Ralf Corsepius <corsepiu@…>

  • 3c509/Makefile.am, clock/Makefile.am, console/Makefile.am, ne2000/Makefile.am, start/Makefile.am, startup/Makefile.am, timer/Makefile.am, wd8003/Makefile.am, wrapup/Makefile.am: Include compile.am
  • Property mode set to 100644
File size: 681 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7PGM = $(ARCH)/timer.rel
8
9C_FILES = timer.c
10S_FILES = timerisr.S
11timer_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.o) $(S_FILES:%.S=$(ARCH)/%.o)
12
13include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
14include $(top_srcdir)/../../../../../../automake/compile.am
15include $(top_srcdir)/../../../../../../automake/lib.am
16
17#
18# (OPTIONAL) Add local stuff here using +=
19#
20
21$(PGM): $(timer_rel_OBJECTS)
22        $(make-rel)
23
24# the .rel file built here will be put into libbsp.a by
25#       ../wrapup/Makefile
26
27all-local: $(ARCH) $(timer_rel_OBJECTS) $(PGM)
28
29.PRECIOUS: $(PGM)
30
31EXTRA_DIST = timer.c timerisr.S
32
33include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.