source: rtems/c/src/exec/score/macros/rtems/score/Makefile.am @ 3f56f22c

4.104.114.84.95
Last change on this file since 3f56f22c was 3f56f22c, checked in by Joel Sherrill <joel.sherrill@…>, on 09/28/01 at 13:36:12

2001-09-28 Ralf Corsepius <corsepiu@…>

  • include/rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='.
  • include/rtems/Makefile.am: Use 'PREINSTALL_FILES ='.
  • inline/rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='.
  • macros/rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='.
  • Property mode set to 100644
File size: 986 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7include_rtems_scoredir = $(includedir)/rtems/score
8
9## We only build multiprocessing related files if HAS_MP was defined
10MP_I_FILES = mppkt.inl objectmp.inl threadmp.inl
11
12STD_I_FILES = address.inl chain.inl coremsg.inl coremutex.inl coresem.inl \
13    heap.inl isr.inl object.inl priority.inl stack.inl states.inl \
14    sysstate.inl thread.inl tod.inl tqdata.inl userext.inl watchdog.inl \
15    wkspace.inl
16
17I_FILES = $(STD_I_FILES) $(MP_I_FILES)
18
19if MACROS
20if HAS_MP
21include_rtems_score_HEADERS = $(STD_I_FILES) $(MP_I_FILES)
22else
23include_rtems_score_HEADERS = $(STD_I_FILES)
24endif
25
26PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems/score \
27    $(include_rtems_score_HEADERS:%=$(PROJECT_INCLUDE)/rtems/score/%)
28
29$(PROJECT_INCLUDE)/rtems/score:
30        @$(mkinstalldirs) $@
31$(PROJECT_INCLUDE)/rtems/score/%.inl: %.inl
32        $(INSTALL_DATA) $< $@
33endif
34
35all-local: $(PREINSTALL_FILES)
36
37EXTRA_DIST = $(I_FILES)
38
39include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.