source: rtems/cpukit/ada/Makefile.am @ 31b65e5

4.104.114.84.95
Last change on this file since 31b65e5 was 74c77c5, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/30/03 at 07:52:50

2003-11-30 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Preinstall adainclude_HEADERS. Add $(dirstamp) to preinstallation rules.
  • Property mode set to 100644
File size: 1.5 KB
Line 
1#
2# $Id$
3#
4
5adaincludedir = $(includedir)/adainclude
6
7if RTEMS_ADA
8adainclude_HEADERS = rtems.adb rtems.ads
9adainclude_HEADERS += rtems-multiprocessing.adb rtems-multiprocessing.ads
10endif
11
12all-local: $(TMPINSTALL_FILES)
13
14PREINSTALL_FILES =
15
16$(PROJECT_INCLUDE)/adainclude/$(dirstamp):
17        @$(mkinstalldirs) $(PROJECT_INCLUDE)/adainclude
18        @: > $(PROJECT_INCLUDE)/adainclude/$(dirstamp)
19PREINSTALL_FILES += $(PROJECT_INCLUDE)/adainclude/$(dirstamp)
20
21if RTEMS_ADA
22$(PROJECT_INCLUDE)/adainclude/rtems.adb: rtems.adb $(PROJECT_INCLUDE)/adainclude/$(dirstamp)
23        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/adainclude/rtems.adb
24PREINSTALL_FILES += $(PROJECT_INCLUDE)/adainclude/rtems.adb
25
26$(PROJECT_INCLUDE)/adainclude/rtems.ads: rtems.ads $(PROJECT_INCLUDE)/adainclude/$(dirstamp)
27        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/adainclude/rtems.ads
28PREINSTALL_FILES += $(PROJECT_INCLUDE)/adainclude/rtems.ads
29
30$(PROJECT_INCLUDE)/adainclude/rtems-multiprocessing.adb: rtems-multiprocessing.adb $(PROJECT_INCLUDE)/adainclude/$(dirstamp)
31        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/adainclude/rtems-multiprocessing.adb
32PREINSTALL_FILES += $(PROJECT_INCLUDE)/adainclude/rtems-multiprocessing.adb
33
34$(PROJECT_INCLUDE)/adainclude/rtems-multiprocessing.ads: rtems-multiprocessing.ads $(PROJECT_INCLUDE)/adainclude/$(dirstamp)
35        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/adainclude/rtems-multiprocessing.ads
36PREINSTALL_FILES += $(PROJECT_INCLUDE)/adainclude/rtems-multiprocessing.ads
37endif
38
39include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.