source: rtems/tools/build/os/msdos/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: 767 bytes
Line 
1#
2# $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7VPATH = @srcdir@
8RTEMS_ROOT = @top_srcdir@
9PROJECT_ROOT = @PROJECT_ROOT@
10
11include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
12include $(RTEMS_ROOT)/make/leaf.cfg
13
14DESTDIR=$(PROJECT_RELEASE)/build-tools
15
16INSTALLED=$(DESTDIR)/ifc.exe \
17          $(DESTDIR)/cklength.exe \
18          $(DESTDIR)/fixtimer.exe
19
20all:    $(DESTDIR) $(PGMS) install
21
22$(DESTDIR):
23        $(BSDINSTALL) $(INSTDIRFLAGS) $@
24
25install:  $(INSTALLED)
26
27# Install the programs
28$(DESTDIR)/ifc.exe: ifc_exe.uue
29        uudecode <ifc_exe.uue
30        mv ifc.exe $(DESTDIR)/ifc.exe
31
32$(DESTDIR)/cklength.exe: cklength.uue
33        uudecode <cklength.uue
34        mv cklength.exe $(DESTDIR)/cklength.exe
35
36$(DESTDIR)/fixtimer.exe: fixtimer.uue
37        uudecode <fixtimer.uue
38        mv fixtimer.exe $(DESTDIR)/fixtimer.exe
39
Note: See TracBrowser for help on using the repository browser.