Wed, 31 Dec 2014 07:53:36 +0100
Correct small whitespace inconsistency, lost while renaming variables.
michael@0 | 1 | # |
michael@0 | 2 | # This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
michael@0 | 5 | |
michael@0 | 6 | # This makefile appends to the variable OBJS the platform-dependent |
michael@0 | 7 | # object modules that will be part of the nspr20 library. |
michael@0 | 8 | |
michael@0 | 9 | CSRCS = \ |
michael@0 | 10 | unix.c \ |
michael@0 | 11 | unix_errors.c \ |
michael@0 | 12 | uxproces.c \ |
michael@0 | 13 | uxrng.c \ |
michael@0 | 14 | uxshm.c \ |
michael@0 | 15 | uxwrap.c \ |
michael@0 | 16 | $(NULL) |
michael@0 | 17 | |
michael@0 | 18 | ifneq ($(USE_PTHREADS),1) |
michael@0 | 19 | CSRCS += uxpoll.c |
michael@0 | 20 | endif |
michael@0 | 21 | |
michael@0 | 22 | ifeq ($(PTHREADS_USER),1) |
michael@0 | 23 | CSRCS += pthreads_user.c |
michael@0 | 24 | endif |
michael@0 | 25 | |
michael@0 | 26 | CSRCS += $(PR_MD_CSRCS) |
michael@0 | 27 | ASFILES += $(PR_MD_ASFILES) |
michael@0 | 28 | |
michael@0 | 29 | OBJS += $(addprefix md/unix/$(OBJDIR)/,$(CSRCS:.c=.$(OBJ_SUFFIX))) \ |
michael@0 | 30 | $(addprefix md/unix/$(OBJDIR)/,$(ASFILES:.s=.$(OBJ_SUFFIX))) |
michael@0 | 31 |