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

4.104.114.84.95
Last change on this file since fba12eb6 was fba12eb6, checked in by Joel Sherrill <joel.sherrill@…>, on 11/23/99 at 13:29:04

Patch rtems-rc-19991117-11.diff from Ralf Corsepius <corsepiu@…>
to convert the libc directory to automake and "dozens of
small fixes for Makefile.ins/configure.ins below c/src/lib."

  • Property mode set to 100644
File size: 868 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 = \
24$(PROJECT_INCLUDE)/rtems/posix \
25$(H_FILES:%=$(PROJECT_INCLUDE)/rtems/posix/%)
26
27$(PROJECT_INCLUDE)/rtems/posix:
28        @$(mkinstalldirs) $@
29$(PROJECT_INCLUDE)/rtems/posix/%.h: %.h
30        $(INSTALL_DATA) $< $@
31
32all-am: $(PREINSTALL_FILES)
33debug-am: $(PREINSTALL_FILES)
34profile-am: $(PREINSTALL_FILES)
35
36EXTRA_DIST = $(UNUSED_H_FILES)
37
38include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.