source: rtems/c/build-tools/os/msdos/Makefile.in @ 06fa582

4.104.114.84.95
Last change on this file since 06fa582 was 06fa582, checked in by Joel Sherrill <joel.sherrill@…>, on 08/19/98 at 12:56:20

Patches from Ralf Corsepius <corsepiu@…> and myself to
make solaris target buildable.

  1. The ipc check fails since solaris does not define union semun.

The unix port code actually defines this type itself on solaris. Doing
the same thing lets it get configured. Then...

  1. It looks like BSDINSTALL is not defined properly.

BSDINSTALL is defined in make/host.cfg.in as
BSDINSTALL=@INSTALL@

@INSTALL@ is generated by autoconf's standard macro AC_PROG_INSTALL, which
is widely used in almost any autoconf/automake configured package. In case
there is really something wrong with it, then it must be considered a bug
in autoconf.

I can see a doubious fragment in AC_PROG_INSTALL, which is used when no
appropriate bsd-install is found.

Finally Ralf saw a problem with the find on solaris which I also saw and
fixed.

  • Property mode set to 100644
File size: 763 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        @INSTALL@ $(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.