1#
2# This Source Code Form is subject to the terms of the Mozilla Public
3# License, v. 2.0. If a copy of the MPL was not distributed with this
4# file, You can obtain one at http://mozilla.org/MPL/2.0/.
5
6# This makefile appends to the variable OBJS the platform-dependent
7# object modules that will be part of the nspr20 library.
8
9CSRCS = \
10	os2io.c      \
11	os2sock.c    \
12	os2thred.c   \
13	os2cv.c      \
14	os2gc.c      \
15	os2misc.c    \
16	os2inrval.c  \
17	os2sem.c     \
18	os2_errors.c \
19	os2poll.c    \
20	os2rng.c     \
21	$(NULL)
22
23ASFILES = os2emx.s os2vaclegacy.s
24
25OBJS += $(addprefix md/os2/$(OBJDIR)/,$(CSRCS:.c=.$(OBJ_SUFFIX)))  \
26	$(addprefix md/os2/$(OBJDIR)/,$(ASFILES:.$(ASM_SUFFIX)=.$(OBJ_SUFFIX)))
27
28