source: rtems/tools/build/scripts/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: 640 bytes
Line 
1#
2# $Id$
3#
4# RTEMS build tools
5# NOTE: of course we can't use any of these tools
6#               in this Makefile.  Most notably: install-if-change
7#
8
9@SET_MAKE@
10srcdir = @srcdir@
11VPATH = @srcdir@
12RTEMS_ROOT = @top_srcdir@
13PROJECT_ROOT = @PROJECT_ROOT@
14
15include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
16include $(RTEMS_ROOT)/make/leaf.cfg
17
18DESTDIR=$(PROJECT_RELEASE)/build-tools
19
20PGMS=install-if-change rcs-clean lock-directory unlock-directory \
21  search-id.sh
22
23INSTALLED=$(PGMS:%=$(DESTDIR)/%)
24
25all:    $(DESTDIR) $(PGMS) install
26
27$(DESTDIR):
28        @INSTALL@ $(INSTDIRFLAGS) $@
29
30install:  $(INSTALLED)
31
32# Install the program
33$(DESTDIR)/%: %
34        $(make-script)
Note: See TracBrowser for help on using the repository browser.