nsprpub/pr/src/md/unix/objs.mk

Wed, 31 Dec 2014 07:53:36 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:53:36 +0100
branch
TOR_BUG_3246
changeset 5
4ab42b5ab56c
permissions
-rw-r--r--

Correct small whitespace inconsistency, lost while renaming variables.

     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/.
     6 # This makefile appends to the variable OBJS the platform-dependent
     7 # object modules that will be part of the nspr20 library.
     9 CSRCS =          \
    10 	unix.c    \
    11 	unix_errors.c \
    12 	uxproces.c \
    13 	uxrng.c \
    14 	uxshm.c \
    15 	uxwrap.c \
    16 	$(NULL)
    18 ifneq ($(USE_PTHREADS),1)
    19 CSRCS += uxpoll.c
    20 endif
    22 ifeq ($(PTHREADS_USER),1)
    23 CSRCS += pthreads_user.c
    24 endif
    26 CSRCS	+= $(PR_MD_CSRCS)
    27 ASFILES += $(PR_MD_ASFILES)
    29 OBJS += $(addprefix md/unix/$(OBJDIR)/,$(CSRCS:.c=.$(OBJ_SUFFIX)))  \
    30 	$(addprefix md/unix/$(OBJDIR)/,$(ASFILES:.s=.$(OBJ_SUFFIX)))

mercurial