source: rtems/c/build-tools/os/msdos/Makefile.in @ 254b4450

4.104.114.84.95
Last change on this file since 254b4450 was 254b4450, checked in by Joel Sherrill <joel.sherrill@…>, on 04/01/97 at 23:07:52

This set of changes is the build of what was required to convert to
GNU autoconf. This is the first large step in allowing an RTEMS
user to perform a one-tree build (per crossgcc FAQ) including RTEMS
in the build process. With this change RTEMS is configured in
built in the same style as the GNU tools, yet retains the basic
structure of its traditional Makefiles (ala Tony Bennett).
Jiri Gaisler (jgais@…) deserves (and received)
a big thank you for doing this.

There are still issues to be resolved but as of this commit, all target
which can be built on a linux host have been using a modified version
of the source Jiri submitted. This source was merged and most targets
built in the tree before this commit.

There are some issues which remain to be resolved but they are primarily
related to host OS dependencies, script issues, the use of gawk
for hack_specs, and the dependence on gcc snapshots. These will
be resolved.

  • Property mode set to 100644
File size: 719 bytes
Line 
1#
2# $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8VPATH=@srcdir@
9
10include $(RTEMS_CUSTOM)
11include $(PROJECT_ROOT)/make/leaf.cfg
12
13DESTDIR=$(PROJECT_RELEASE)/build-tools
14
15INSTALLED=$(DESTDIR)/ifc.exe \
16          $(DESTDIR)/cklength.exe \
17          $(DESTDIR)/fixtimer.exe
18
19all:    $(DESTDIR) $(PGMS) install
20        echo $(DESTDIR)
21
22$(DESTDIR):
23        [ -d $@ ] || $(MKDIR) $@
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.