source: rtems/cpukit/score/inline/Makefile.am @ c43484b

4.104.114.84.95
Last change on this file since c43484b was c43484b, checked in by Joel Sherrill <joel.sherrill@…>, on 03/28/02 at 00:46:37

2002-03-27 Ralf Corsepius <corsepiu@…>

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