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