source: rtems/c/src/exec/posix/include/rtems/posix/Makefile.am @ 977fc49

4.104.114.84.95
Last change on this file since 977fc49 was 188c82b, checked in by Joel Sherrill <joel.sherrill@…>, on 08/30/00 at 17:12:55

2000-08-30 Joel Sherrill <joel@…>

  • Many files: Moved posix/include/rtems/posix/seterr.h to score/include/rtems/seterr.h so it would be available within all APIs.
  • Property mode set to 100644
File size: 804 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 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-local: $(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.