source: rtems/c/src/exec/score/inline/rtems/score/Makefile.am @ 6f921ba

Last change on this file since 6f921ba was 6f921ba, checked in by Joel Sherrill <joel.sherrill@…>, on 03/21/00 at 17:57:21

Ran ampolish after getting new version from Ralf Corsepius
<corsepiu@…>.

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