source: rtems/tools/build/scripts/Makefile.in @ 6f9c75c3

4.104.114.84.95
Last change on this file since 6f9c75c3 was 6f9c75c3, checked in by Joel Sherrill <joel.sherrill@…>, on 01/16/98 at 16:56:48

Ralf Corsepius reported a number of missing CVS Id's:

RTEMS is under CVS control and has been since rtems 3.1.16 which was
around May 1995. So I just to add the $Id$. If you notice other files
with missing $Id$'s let me know. I try to keep w\up with it.

Now that you have asked -- I'll attach a list of files lacking an RCS-Id to
this mail. This list has been generated by a little sh-script I'll also
enclose.

  • Property mode set to 100644
File size: 718 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@
11top_srcdir = @top_srcdir@
12VPATH = @srcdir@
13RTEMS_ROOT = @RTEMS_ROOT@
14PROJECT_ROOT = @PROJECT_ROOT@
15RTEMS_CUSTOM = $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
16
17include $(RTEMS_CUSTOM)
18include $(RTEMS_ROOT)/make/leaf.cfg
19
20DESTDIR=$(PROJECT_RELEASE)/build-tools
21
22PGMS=install-if-change rcs-clean lock-directory unlock-directory rtems-glom search-id.sh
23
24
25INSTALLED=$(PGMS:%=$(DESTDIR)/%)
26
27all:    $(DESTDIR) $(PGMS) install
28        echo $(DESTDIR)
29
30$(DESTDIR):
31        [ -d $@ ] || $(MKDIR) $@
32
33install:  $(INSTALLED)
34
35# Install the program
36$(DESTDIR)/%: %
37        $(make-script)
Note: See TracBrowser for help on using the repository browser.