source: rtems/c/src/lib/libbsp/powerpc/motorola_powerpc/qemu_fakerom/Makefile.am @ 9b4422a2

4.115
Last change on this file since 9b4422a2 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 1018 bytes
Line 
1## NOTE: This Makefile.am does not apply RTEMS's compilation rules.
2ACLOCAL_AMFLAGS = -I ../../../../aclocal
3
4include $(top_srcdir)/../../../../automake/compile.am
5include $(top_srcdir)/../../bsp.am
6
7AUTOMAKE_OPTIONS = no-exeext
8
9project_lib_DATA  = qemu_fakerom.$(OBJEXT)
10project_lib_DATA += qemu_fakerom.elf
11project_lib_DATA += qemu_fakerom.bin
12
13
14## IMPORTANT: head.S must be first, T. Straumann 12/17/2001
15qemu_fakerom.$(OBJEXT): ../../../powerpc/shared/bootloader/qemu_fakerom.S
16        $(CPPASCOMPILE) -c -o $@ $^
17
18qemu_fakeres.$(OBJEXT): ../../../powerpc/shared/bootloader/qemu_fakeres.c
19        $(CC) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o $@ $^
20
21qemu_fakerom.elf: qemu_fakerom.$(OBJEXT) qemu_fakeres.$(OBJEXT)
22        $(LD) -o $@ $^ -nostdlib -Ttext 0xfff00000 --section-start=.romentry=0xfffffffc
23
24qemu_fakerom.bin: qemu_fakerom.$(OBJEXT) qemu_fakeres.$(OBJEXT)
25        $(LD) -o $@ $^ --oformat binary -nostdlib -Ttext 0xfff00000 --section-start=.romentry=0xfffffffc
26
27include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.