summaryrefslogtreecommitdiff
path: root/PACE/pace/posix/Makefile.am
blob: d50c7d6885b7708306588ae3a39abc5b6f109631 (plain)
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
##---------------------------------------------------------------------------
##       $Id$
##
##       Makefile for the PACE C library
##
##---------------------------------------------------------------------------

##
##  Process this file with automake to create Makefile.in
##

## The number in AUTOMAKE_OPTIONS is the minimum required version automake
## needed to process this file.
AUTOMAKE_OPTIONS = 1.4

## Create a libtool convenience library that contains the contents of
## the POSIX-specific version of PACE.
noinst_LTLIBRARIES = libPACE_POSIX.la

libPACE_POSIX_la_SOURCES = \
  aio.c \
  assert.c \
  ctype.c \
  dirent.c \
  fcntl.c \
  grp.c \
  locale.c \
  math.c \
  mman.c \
  mqueue.c \
  pthread.c \
  pwd.c \
  sched.c \
  semaphore.c \
  setjmp.c \
  signal.c \
  stat.c \
  stdio.c \
  stdlib.c \
  string.c \
  termios.c \
  time.c \
  times.c \
  unistd.c \
  utime.c \
  utsname.c \
  wait.c

PACE_INLINE_FILES = \
  aio.inl \
  assert.inl \
  ctype.inl \
  dirent.inl \
  fcntl.inl \
  grp.inl \
  locale.inl \
  math.inl \
  mman.inl \
  mqueue.inl \
  pthread.inl \
  pwd.inl \
  sched.inl \
  semaphore.inl \
  setjmp.inl \
  signal.inl \
  stat.inl \
  stdio.inl \
  stdlib.inl \
  string.inl \
  termios.inl \
  time.inl \
  times.inl \
  unistd.inl \
  utime.inl \
  utsname.inl \
  wait.inl

PACE_HEADER_FILES = \
  aio.h \
  assert.h \
  ctype.h \
  dirent.h \
  errno.h \
  fcntl.h \
  grp.h \
  limits.h \
  locale.h \
  math.h \
  mman.h \
  mqueue.h \
  pthread.h \
  pwd.h \
  sched.h \
  semaphore.h \
  setjmp.h \
  signal.h \
  stat.h \
  stdio.h \
  stdlib.h \
  string.h \
  termios.h \
  time.h \
  times.h \
  types.h \
  unistd.h \
  utime.h \
  utsname.h \
  wait.h

pkgincludedir = $(includedir)/$(PACKAGE)/posix
pkginclude_HEADERS = \
  $(PACE_INLINE_FILES) \
  $(PACE_HEADER_FILES)