summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/include/Makefile.am
blob: 4fcc0615972022941ff60d9bf0f5dcfc84a8a457 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
##
## $Id$
##


$(PROJECT_INCLUDE):
	@$(mkinstalldirs) $@
$(PROJECT_INCLUDE)/sys:
	@$(mkinstalldirs) $@
$(PROJECT_INCLUDE)/rtems/posix:
	@$(mkinstalldirs) $@

$(PROJECT_INCLUDE)/%.h: %.h
	$(INSTALL_DATA) $< $@

# include
noinst_HEADERS = devctl.h intr.h

include_HEADERS = sched.h aio.h mqueue.h semaphore.h

PREINSTALL_FILES = $(PROJECT_INCLUDE) \
    $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)

# sys

include_sysdir = $(includedir)/sys

include_sys_HEADERS = sys/utsname.h

PREINSTALL_FILES += $(PROJECT_INCLUDE)/sys \
    $(include_sys_HEADERS:%=$(PROJECT_INCLUDE)/%)

# rtems/posix

include_rtems_posixdir = $(includedir)/rtems/posix

MP_H_FILES = rtems/posix/condmp.h rtems/posix/mqueuemp.h rtems/posix/mutexmp.h \
    rtems/posix/pthreadmp.h rtems/posix/semaphoremp.h

STD_H_FILES = rtems/posix/cancel.h rtems/posix/cond.h rtems/posix/config.h \
    rtems/posix/key.h rtems/posix/mqueue.h rtems/posix/mutex.h \
    rtems/posix/posixapi.h rtems/posix/priority.h rtems/posix/psignal.h \
    rtems/posix/pthread.h rtems/posix/ptimer.h rtems/posix/semaphore.h \
    rtems/posix/threadsup.h rtems/posix/time.h rtems/posix/timer.h \
    $(MP_H_FILES)

noinst_HEADERS += rtems/posix/intr.h rtems/posix/threadsup.h

if HAS_MP
include_rtems_posix_HEADERS = $(STD_H_FILES) $(MP_H_FILES)
else
include_rtems_posix_HEADERS = $(STD_H_FILES)
endif

PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/posix \
    $(include_rtems_posix_HEADERS:%=$(PROJECT_INCLUDE)/%)

## General

all-local: $(PREINSTALL_FILES)

EXTRA_DIST = $(noinst_HEADERS)

include $(top_srcdir)/../../../../automake/local.am