source: rtems/c/src/lib/libbsp/powerpc/psim/console/Makefile.am @ daa9eb96

4.104.114.84.95
Last change on this file since daa9eb96 was daa9eb96, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/22/03 at 16:09:55

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

  • clock/Makefile.am: Eliminate VPATH.
  • console/Makefile.am: Eliminate VPATH.
  • shmsupp/Makefile.am: Eliminate VPATH.
  • startup/Makefile.am: Eliminate VPATH.
  • timer/Makefile.am: Eliminate VPATH.
  • vectors/Makefile.am: Eliminate VPATH.
  • Property mode set to 100644
File size: 707 bytes
Line 
1##
2## $Id$
3##
4
5PGM = $(ARCH)/console.rel
6
7C_FILES = console-io.c
8OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
9
10shared_C_FILES = ../../../shared/console-polled.c
11OBJS += $(shared_C_FILES:../../../shared/%.c=$(ARCH)/%.$(OBJEXT))
12
13S_FILES = consupp.S
14OBJS += $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
15
16include $(top_srcdir)/../../../../automake/compile.am
17include $(top_srcdir)/../../../../automake/lib.am
18
19$(ARCH)/%$(LIB_VARIANT).$(OBJEXT): ../../../shared/%.c $(ARCH)/$(dirstamp)
20        ${COMPILE} -o $@ -c $<
21
22$(PGM): $(OBJS)
23        $(make-rel)
24
25# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
26
27all-local: $(PGM)
28
29EXTRA_DIST = $(C_FILES) $(S_FILES)
30
31include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.