source: rtems/Makefile.in @ 421dfef6

4.104.114.84.95
Last change on this file since 421dfef6 was 4da42c6, checked in by Joel Sherrill <joel.sherrill@…>, on 01/27/98 at 14:30:01

Removed some stanzas per Ralf Corsepius:

4) The toplevel Makefile.in contains rules named make_subdir and
clean_modules, which probably can be deleted, IMO.
At least make_subdir doesn't give any sense anymore. (I had removed it
im my original patch).

  • Property mode set to 100644
File size: 1.2 KB
Line 
1#
2# top level directory for RTEMS build tree
3#
4# Modified by Jiri to implement autoconf and cygnus one-tree build
5#
6#  $Id$
7#
8
9@SET_MAKE@
10srcdir = @srcdir@
11prefix = @prefix@
12exec_prefix = @exec_prefix@
13bindir = @bindir@
14libdir = @libdir@
15includedir = @includedir@
16target = @target@
17manext = 1
18mandir = @mandir@/man$(manext)
19program_prefix = @program_prefix@
20
21export bindir
22
23RTEMS_ROOT = @RTEMS_ROOT@
24PROJECT_ROOT = @PROJECT_ROOT@
25
26VPATH=@srcdir@
27
28ifeq ($(RTEMS_BSP),)
29  RTEMS_BSP = @RTEMS_BSP_LIST@
30endif
31
32MAKE_CONFIG_EXTRA_DIR_PART=c/
33
34include $(RTEMS_ROOT)/make/main.cfg
35
36MTARGETS = all install $(TARGET_VARIANTS) $(TARGET_VARIANTS:%=%_all) \
37  $(TARGET_VARIANTS:%=%_install) $(TARGET_VARIANTS:%=%_tests) \
38  clean_wrapup distclean clean_dirs clean_tools tests clean depend
39
40.PHONY:
41
42EXIT_CMD = exit 1
43
44# Don't pass flags from previous make - especially NOT CFLAGS
45override MAKEFLAGS=
46
47#            \"XCFLAGS=$(CFLAGS_FOR_TARGET)\"
48
49$(MTARGETS):
50        BASEDIR=`pwd`; \
51        for bsp in $(RTEMS_BSP) xxx; \
52        do if [ $$bsp != xxx ] ; then  \
53            cd $$BASEDIR; \
54            cmd="cd c; $(MAKE) RTEMS_BSP=$$bsp $(FLAGS_TO_PASS) \
55            $@" ; \
56            eval $$cmd || $(EXIT_CMD); \
57        fi; done;
Note: See TracBrowser for help on using the repository browser.