source: rtems/c/src/exec/score/cpu/powerpc/rtems/score/Makefile.in @ 7908ba5b

4.104.114.84.95
Last change on this file since 7908ba5b was 7908ba5b, checked in by Joel Sherrill <joel.sherrill@…>, on 02/18/99 at 18:28:24

Part of the automake VI patch from Ralf Corsepius <corsepiu@…>:

4) rtems-rc-19990202-0.diff /reorg-score-cpu.sh

reorg-score-cpu.sh reorganizes the cpu/<cpu>/* subdirectories in a
similar manner than previous reorg scripts did. rtems-rc-19990202-0.diff
contains the diffs after reorg-score-cpu.sh has been run on a
rtems-19981215 snapshot + my patches up to rtems-rc-19990131-2.diff.

This patch is rather nasty and may break something. However, I've tested
it for about 10 different target/bsp pairs and believe to have shaken
out most bugs.

I wonder about the following .h files that were not moved:

a29k/asm.h
a29k/cpu_asm.h
i386/asm.h
i960/asm.h
m68k/asm.h
m68k/m68302.h
m68k/m68360.h
m68k/qsm.h
m68k/sim.h
mips64orion/asm.h
mips64orion/cpu_asm.h
mips64orion/mips64orion.h
no_cpu/asm.h
no_cpu/cpu_asm.h
powerpc/asm.h
powerpc/mpc860.h
sh/asm.h
sparc/asm.h
sparc/erc32.h

  • Property mode set to 100644
File size: 1.2 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7VPATH = @srcdir@
8RTEMS_ROOT = @top_srcdir@
9PROJECT_ROOT = @PROJECT_ROOT@
10
11# C source names, if any, go here -- minus the .c
12C_PIECES=
13C_FILES=$(C_PIECES:%=%.c)
14C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
15
16H_PIECES=cpu.h ppc.h ppctypes.h
17H_FILES=$(H_PIECES:%=$(srcdir)/%)
18
19# Assembly source names, if any, go here -- minus the .S
20S_PIECES=
21S_FILES=$(S_PIECES:%=%.S)
22S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
23
24SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
25OBJS=$(C_O_FILES) $(CC_O_FILES) $(S_O_FILES)
26
27include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
28include $(RTEMS_ROOT)/make/leaf.cfg
29
30#
31# (OPTIONAL) Add local stuff here using +=
32#
33
34DEFINES  +=
35CPPFLAGS +=
36CFLAGS   +=
37
38LD_PATHS  +=
39LD_LIBS   +=
40LDFLAGS   +=
41
42#
43# Add your list of files to delete here.  The config files
44#  already know how to delete some stuff, so you may want
45#  to just run 'make clean' first to see what gets missed.
46#  'make clobber' already includes 'make clean'
47#
48
49CLEAN_ADDITIONS +=
50CLOBBER_ADDITIONS += $(BUILT_SOURCES)
51
52# Install the program(s), appending _g or _p as appropriate.
53# for include files, just use $(INSTALL)
54all: install-headers
55
56install-headers: ${H_FILES}
57        $(INSTALL) -m 444 ${H_FILES} $(PROJECT_INCLUDE)/rtems/score
58
59preinstall: install-headers
Note: See TracBrowser for help on using the repository browser.