source: rtems/c/src/lib/libbsp/unix/posix/tools/Makefile.in @ 11cfb6f7

4.104.114.84.95
Last change on this file since 11cfb6f7 was 11cfb6f7, checked in by Joel Sherrill <joel.sherrill@…>, on 10/14/98 at 20:19:30

Patch from Ralf Corsepius <corsepiu@…>:

  1. Rtems contains some perl scripts that use hard-coded paths to /usr/bin/perl or /usr/local/bin/perl I have already fixed these problems by adding some checks to configure.in. While doing this, I also cleaned up some more autoconf related problems for generating shell scripts. This patch might seem a bit scary to you, but I am quite confident it won't break something (I've been testing it for almost a week now, however it might introduce typos for a limited number configurations I don't have access to - But it shouldn't be a problem for you to test them :-).

I expect to get this finished tonight, hence you will very likely
have the patch when you get up tomorrow.

Changes:

  • Check for PERL and disable all PERL scripts if perl wasn't found.
  • Generate all KSHELL-scripts with autoconf instead of make-script
  • Automatic dependency handling for autoconf generated KSHELL or PERL scripts (make/rtems.cfg)

Notes:

  • this patch contains new files and deletes some other files.
  • The patch is relative to rtems-4.0.0-beta4 with my previous rtems-rc-981014-1.diff patch applied.

Testing:

I tested it with sh-rtems and posix under linux. Now all targets
which are touched by this patch and which are not used while building
for sh-rtems and posix still need to be tested. AFAIS, only the
sparc/erc32 BSP should be affected by this criterion. And if you
like to, you should also consider testing it on a Cygwin32 and a
Solaris host for one arbitrary BSP.

  • Property mode set to 100644
File size: 662 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
13include $(RTEMS_ROOT)/make/rtems.cfg
14
15DESTDIR=$(PROJECT_RELEASE)/tests
16
17# We use the generic difftest
18BUILD_PGMS=runtest looptest
19ifneq (@PERL@,)
20BUILD_PGMS+=semdump shmdump
21endif
22
23PGMS = $(BUILD_PGMS)
24
25CLEAN_ADDITIONS += $(BUILD_PGMS)
26
27INSTALLED_PGMS=$(PGMS:%=$(DESTDIR)/%)
28
29all:    $(DESTDIR) $(PGMS) install
30
31$(DESTDIR):
32        @INSTALL@ $(INSTDIRFLAGS) $@
33
34$(INSTALLED_PGMS): $(PGMS)
35        @INSTALL@ $(INSTBINFLAGS) $^ $(DESTDIR)
36
37install:  $(DESTDIR) $(INSTALLED_PGMS)
Note: See TracBrowser for help on using the repository browser.