source: rtems/c/src/exec/posix/include/rtems/posix/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: 810 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7MP_H_FILES = condmp.h mqueuemp.h mutexmp.h pthreadmp.h semaphoremp.h
8
9STD_H_FILES = cancel.h cond.h config.h key.h mqueue.h mutex.h posixapi.h \
10    priority.h psignal.h pthread.h ptimer.h semaphore.h seterr.h threadsup.h \
11    time.h timer.h $(MP_H_FILES)
12
13UNUSED_H_FILES = intr.h threadsup.h
14
15if HAS_MP
16H_FILES = $(STD_H_FILES) $(MP_H_FILES)
17else
18H_FILES = $(STD_H_FILES)
19endif
20
21noinst_HEADERS = $(STD_H_FILES) $(MP_H_FILES)
22
23PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/posix \
24    $(H_FILES:%=$(PROJECT_INCLUDE)/rtems/posix/%)
25
26$(PROJECT_INCLUDE)/rtems/posix:
27        @$(mkinstalldirs) $@
28$(PROJECT_INCLUDE)/rtems/posix/%.h: %.h
29        $(INSTALL_DATA) $< $@
30
31all-am: $(PREINSTALL_FILES)
32
33EXTRA_DIST = $(UNUSED_H_FILES)
34
35include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.