source: rtems/cpukit/Makefile.am @ b71e8d0

4.104.114.84.95
Last change on this file since b71e8d0 was b0805d8, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/12/03 at 16:08:28

2003-12-12 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
  • wrapup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
  • Property mode set to 100644
File size: 1.7 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I aclocal
6
7include $(top_srcdir)/automake/multilib.am
8
9SUBDIRS = . ada score rtems sapi posix itron
10SUBDIRS += libcsupport libblock libfs
11SUBDIRS += libnetworking librpc
12SUBDIRS += libmisc
13SUBDIRS += wrapup
14
15noinst_DATA = preinstall-stamp
16
17preinstall-stamp:
18        $(MAKE) $(AM_MAKEFLAGS) preinstall
19        touch preinstall-stamp
20CLEANFILES = preinstall-stamp
21
22include_rtemsdir = $(includedir)/rtems
23include_rtems_HEADERS = include/rtems/bspIo.h include/rtems/userenv.h \
24    include/rtems/fs.h include/rtems/stdint.h
25
26AUTOMAKE_FILES = automake/compile.am automake/lib.am automake/local.am \
27    automake/multilib.am automake/subdirs.am
28EXTRA_DIST = $(AUTOMAKE_FILES)
29
30PREINSTALL_FILES =
31
32$(PROJECT_INCLUDE)/rtems/$(dirstamp):
33        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems
34        @: > $(PROJECT_INCLUDE)/rtems/$(dirstamp)
35
36$(PROJECT_INCLUDE)/rtems/bspIo.h: include/rtems/bspIo.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
37        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/bspIo.h
38PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/bspIo.h
39
40$(PROJECT_INCLUDE)/rtems/userenv.h: include/rtems/userenv.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
41        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/userenv.h
42PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/userenv.h
43
44$(PROJECT_INCLUDE)/rtems/fs.h: include/rtems/fs.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
45        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/fs.h
46PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/fs.h
47
48$(PROJECT_INCLUDE)/rtems/stdint.h: include/rtems/stdint.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
49        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/stdint.h
50PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/stdint.h
51
52include $(top_srcdir)/automake/subdirs.am
53include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.