source: rtems/c/src/exec/score/tools/hppa1.1/Makefile.in @ 52b0d9d

4.104.114.84.95
Last change on this file since 52b0d9d was 25d457b8, checked in by Joel Sherrill <joel.sherrill@…>, on 02/18/99 at 18:16:40

Yet another part of automake VI 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.1 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7VPATH = @srcdir@
8RTEMS_ROOT = @top_srcdir@
9PROJECT_ROOT = @PROJECT_ROOT@
10
11# we use host compiler here for genoffsets.  Hopefully it has same alignment!!
12USE_HOST_COMPILER=yes
13
14# C source names, if any, go here -- minus the .c
15C_PIECES=genoffsets
16C_FILES=$(C_PIECES:%=%.c)
17C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
18
19H_FILES=
20
21SRCS=$(C_FILES) $(H_FILES)
22OBJS=$(C_O_FILES)
23
24PGMS=${ARCH}/genoffsets
25
26include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
27include $(RTEMS_ROOT)/make/leaf.cfg
28
29# We use files that have not been installed yet.
30CPU_DIR=../../cpu/$(RTEMS_CPU)
31
32#
33# (OPTIONAL) Add local stuff here using +=
34#
35
36DEFINES  +=
37CPPFLAGS += -I$(PROJECT_INCLUDE) \
38            -I$(CPU_DIR) -I$(srcdir)/$(CPU_DIR)
39CFLAGS   +=
40
41LD_PATHS  +=
42LD_LIBS   +=
43LDFLAGS   +=
44
45#
46# Add your list of files to delete here.
47#
48
49CLEAN_ADDITIONS +=
50CLOBBER_ADDITIONS +=
51
52all:    ${ARCH} $(SRCS) preinstall $(PGMS)
53
54preinstall: ${ARCH} $(SRCS) $(PGMS)
55        $(INSTALL) $(INSTBINFLAGS) ${PGMS} ${PROJECT_RELEASE}/bin
56
57# Install the program(s), appending _g or _p as appropriate.
58# for include files, just use $(INSTALL)
Note: See TracBrowser for help on using the repository browser.