source: rtems/cpukit/Makefile.am @ e81cc50

4.104.114.84.95
Last change on this file since e81cc50 was 5c24afe9, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/14/04 at 05:20:59

2004-01-14 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Re-add dirstamps to PREINSTALL_FILES. Add PREINSTALL_FILES to CLEANFILES.
  • automake/local.am: Remove depend-am.
  • automake/subdirs.am: Remove depend-recursive.
  • Property mode set to 100644
File size: 1.6 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
26PREINSTALL_FILES =
27
28$(PROJECT_INCLUDE)/rtems/$(dirstamp):
29        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems
30        @: > $(PROJECT_INCLUDE)/rtems/$(dirstamp)
31PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/$(dirstamp)
32
33$(PROJECT_INCLUDE)/rtems/bspIo.h: include/rtems/bspIo.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
34        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/bspIo.h
35PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/bspIo.h
36
37$(PROJECT_INCLUDE)/rtems/userenv.h: include/rtems/userenv.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
38        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/userenv.h
39PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/userenv.h
40
41$(PROJECT_INCLUDE)/rtems/fs.h: include/rtems/fs.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
42        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/fs.h
43PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/fs.h
44
45$(PROJECT_INCLUDE)/rtems/stdint.h: include/rtems/stdint.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
46        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/stdint.h
47PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/stdint.h
48
49CLEANFILES += $(PREINSTALL_FILES)
50
51include $(top_srcdir)/automake/subdirs.am
52include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.