source: rtems/c/src/exec/score/tools/unix/Makefile.in @ f95d2b53

4.104.114.84.95
Last change on this file since f95d2b53 was f95d2b53, checked in by Joel Sherrill <joel.sherrill@…>, on 07/17/98 at 15:49:12

Patch from Ralf Corsepius <corsepiu@…>. Comments:

  • Added support for bsd "install" ($(BSDINSTALL)) to host.cfg.in, i.e. the standard "install" program that most packages (including automake) use. In Makefiles outside of rtems, "install" normally is referenced by $(INSTALL), but rtems already uses $(INSTALL) for install-if-change, hence I used $(BSDINSTALL) instead to keep up backward compatibility.
  • Removed references to @GREP@ etc. from host.cfg.in, as configure.in doesn't check for them (Minor cleanup).
  • Added installation flags INST*FLAGS to host.cfg.in, which should replace -m XXXX flags for installation calls.

*Changes to gcc.cfg to enable it to build host programs from multiple
sources files.
Should not disturb existing sources, but neccessary.

  • There was a not-so-minor bug in the configuration files: "make install" and "make debug_install" don't work in all subdirectories!! I tried to fix this by adding "install" to MTARGETS in main.cfg, which seems to solve most of the problems. But there still seem to be rare (?) cases where "make debug_install" still seems to have problems.
  • Changes to many host related tool-Makefiles to demonstrate the abilities of INST*FLAGS, BSDINSTALL and the new rules in gcc.cfg. ..of cause ... but BSDINSTALL is THE standard method to install files in most program packages besides rtems. This part of the patch fixes some minor protection setting problems, but doesn't support TARGET_VARIANTS

NOTE:
I hope you will like the BSDINSTALL, INST*FLAGS stuff. It is a step to
get rid of "install-if-change" and to rely on a more standard
installation procedure. If you don't like BSDINSTALL, removing it from
the patch isn't difficult- just grep for BSDINSTALL and replace
BSDINSTALL with INSTALL or MKDIR.

FINALLY:
I still have another patch pending (well, not a complete patch yet, it's
a partial patch to demonstrate the principle), which adds automatic
rebuilding of files generated by autoconf/configure. At the moment I
don't dare to submit it, because integrating this patch would require to
modify all Makefile.ins because we'd need to add a new "include " line
to each Makefile.in.

  • Property mode set to 100644
File size: 1.0 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 gensize.  Hopefully it has same alignment!!
12USE_HOST_COMPILER=yes
13
14# C source names, if any, go here -- minus the .c
15C_PIECES=gensize
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}/gensize
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)
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) $(PGMS)
53        $(BSDINSTALL) $(INSTBINFLAGS) ${PGMS} ${PROJECT_RELEASE}/bin
54
55preinstall:
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.