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

4.104.114.84.95
Last change on this file since a85d8ec was fed6210d, checked in by Ralf Corsepius <ralf.corsepius@…>, on 06/17/02 at 09:27:44

2002-06-17 Ralf Corsepius <corsepiu@…>

  • Include $(top_srcdir)/automake/*.am.
  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[811804fe]1##
2## $Id$
3##
[e1d8abb]4
5
[ff61414]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)
[e1d8abb]42
[fed6210d]43include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.