source: rtems/cpukit/posix/include/Makefile.am @ f22ebf0

4.104.114.84.95
Last change on this file since f22ebf0 was 78c2a97, checked in by Ralf Corsepius <ralf.corsepius@…>, on 06/17/02 at 09:07:32

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

  • include/Makefile.am: Include $(top_srcdir)/../automake/*.am.
  • Makefile.am: Include $(top_srcdir)/../automake/*.am. Use ../aclocal.
  • inline/Makefile.am: Include $(top_srcdir)/../automake/*.am.
  • macros/Makefile.am: Include $(top_srcdir)/../automake/*.am.
  • src/Makefile.am: Include $(top_srcdir)/../automake/*.am.
  • Property mode set to 100644
File size: 1.4 KB
RevLine 
[811804fe]1##
2## $Id$
3##
[e1d8abb]4
5
[5be35ee]6$(PROJECT_INCLUDE):
7        @$(mkinstalldirs) $@
8$(PROJECT_INCLUDE)/sys:
9        @$(mkinstalldirs) $@
10$(PROJECT_INCLUDE)/rtems/posix:
11        @$(mkinstalldirs) $@
12
13$(PROJECT_INCLUDE)/%.h: %.h
14        $(INSTALL_DATA) $< $@
15
16# include
[890f07c]17noinst_HEADERS = devctl.h intr.h
[fba12eb6]18
[890f07c]19include_HEADERS = sched.h aio.h mqueue.h semaphore.h
[e1d8abb]20
[614e671b]21PREINSTALL_FILES = $(PROJECT_INCLUDE) \
[890f07c]22    $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
[5be35ee]23
24# rtems/posix
25
26include_rtems_posixdir = $(includedir)/rtems/posix
27
28MP_H_FILES = rtems/posix/condmp.h rtems/posix/mqueuemp.h rtems/posix/mutexmp.h \
29    rtems/posix/pthreadmp.h rtems/posix/semaphoremp.h
[e1d8abb]30
[5be35ee]31STD_H_FILES = rtems/posix/cancel.h rtems/posix/cond.h rtems/posix/config.h \
32    rtems/posix/key.h rtems/posix/mqueue.h rtems/posix/mutex.h \
33    rtems/posix/posixapi.h rtems/posix/priority.h rtems/posix/psignal.h \
34    rtems/posix/pthread.h rtems/posix/ptimer.h rtems/posix/semaphore.h \
35    rtems/posix/threadsup.h rtems/posix/time.h rtems/posix/timer.h \
36    $(MP_H_FILES)
37
38noinst_HEADERS += rtems/posix/intr.h rtems/posix/threadsup.h
39
40if HAS_MP
41include_rtems_posix_HEADERS = $(STD_H_FILES) $(MP_H_FILES)
42else
43include_rtems_posix_HEADERS = $(STD_H_FILES)
44endif
45
46PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/posix \
47    $(include_rtems_posix_HEADERS:%=$(PROJECT_INCLUDE)/%)
48
49## General
50
51all-local: $(PREINSTALL_FILES)
[e1d8abb]52
[890f07c]53EXTRA_DIST = $(noinst_HEADERS)
[e1d8abb]54
[78c2a97]55include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.