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 | os2io.c \ |
michael@0 | 11 | os2sock.c \ |
michael@0 | 12 | os2thred.c \ |
michael@0 | 13 | os2cv.c \ |
michael@0 | 14 | os2gc.c \ |
michael@0 | 15 | os2misc.c \ |
michael@0 | 16 | os2inrval.c \ |
michael@0 | 17 | os2sem.c \ |
michael@0 | 18 | os2_errors.c \ |
michael@0 | 19 | os2poll.c \ |
michael@0 | 20 | os2rng.c \ |
michael@0 | 21 | $(NULL) |
michael@0 | 22 | |
michael@0 | 23 | ASFILES = os2emx.s os2vaclegacy.s |
michael@0 | 24 | |
michael@0 | 25 | OBJS += $(addprefix md/os2/$(OBJDIR)/,$(CSRCS:.c=.$(OBJ_SUFFIX))) \ |
michael@0 | 26 | $(addprefix md/os2/$(OBJDIR)/,$(ASFILES:.$(ASM_SUFFIX)=.$(OBJ_SUFFIX))) |
michael@0 | 27 |