source: rtems/cpukit/Makefile.am @ 2f4c86f

4.104.114.84.95
Last change on this file since 2f4c86f was 2f4c86f, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/29/04 at 12:43:20

2004-03-29 Ralf Corsepius <ralf_corsepius@…>

PR 561/rtems

  • include/rtems/concat.h: New.
  • Makefile.am: Add include/rtems/concat.h.

PR/589 rtems

  • Makefile.am: Add include/rtems/pci.h.
  • Makefile.am: Include automake/compile.am.
  • configure.ac: RTEMS_TOP(..,[]).
  • Property mode set to 100644
File size: 2.1 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I aclocal
6
7include $(top_srcdir)/automake/compile.am
8include $(top_srcdir)/automake/multilib.am
9
10SUBDIRS = . ada score rtems sapi posix itron
11SUBDIRS += libcsupport libblock libfs
12SUBDIRS += libnetworking librpc
13SUBDIRS += libmisc
14SUBDIRS += wrapup
15
16noinst_DATA = preinstall-stamp
17
18preinstall-stamp:
19        $(MAKE) $(AM_MAKEFLAGS) preinstall
20        touch preinstall-stamp
21CLEANFILES = preinstall-stamp
22
23include_rtemsdir = $(includedir)/rtems
24include_rtems_HEADERS = include/rtems/bspIo.h include/rtems/userenv.h \
25    include/rtems/fs.h include/rtems/pci.h include/rtems/stdint.h \
26    include/rtems/concat.h
27
28PREINSTALL_DIRS =
29PREINSTALL_FILES =
30
31$(PROJECT_INCLUDE)/rtems/$(dirstamp):
32        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems
33        @: > $(PROJECT_INCLUDE)/rtems/$(dirstamp)
34PREINSTALL_DIRS += $(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/pci.h: include/rtems/pci.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
49        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/pci.h
50PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/pci.h
51
52$(PROJECT_INCLUDE)/rtems/stdint.h: include/rtems/stdint.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
53        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/stdint.h
54PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/stdint.h
55
56$(PROJECT_INCLUDE)/rtems/concat.h: include/rtems/concat.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
57        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/concat.h
58PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/concat.h
59
60CLEANFILES += $(PREINSTALL_FILES)
61DISTCLEANFILES = $(PREINSTALL_DIRS)
62
63include $(top_srcdir)/automake/subdirs.am
64include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.