forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OS/2 platform dependent objs file. Thanks to Javier H. Pedemonte <ped…
…[email protected]> for the file. Bug #58804
- Loading branch information
cls%seawood.org
committed
Feb 24, 2001
1 parent
737ae63
commit 79e7bb1
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# | ||
# The contents of this file are subject to the Netscape Public License | ||
# Version 1.1 (the "NPL"); you may not use this file except in | ||
# compliance with the NPL. You may obtain a copy of the NPL at | ||
# http://www.mozilla.org/NPL/ | ||
# | ||
# Software distributed under the NPL is distributed on an "AS IS" basis, | ||
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL | ||
# for the specific language governing rights and limitations under the | ||
# NPL. | ||
# | ||
# The Initial Developer of this code under the NPL is Netscape | ||
# Communications Corporation. Portions created by Netscape are | ||
# Copyright (C) 1998 Netscape Communications Corporation. All Rights | ||
# Reserved. | ||
# | ||
|
||
# This makefile appends to the variable OBJS the platform-dependent | ||
# object modules that will be part of the nspr20 library. | ||
|
||
CSRCS = \ | ||
os2io.c \ | ||
os2sock.c \ | ||
os2thred.c \ | ||
os2cv.c \ | ||
os2gc.c \ | ||
os2misc.c \ | ||
os2inrval.c \ | ||
os2sem.c \ | ||
os2_errors.c \ | ||
os2poll.c \ | ||
os2rng.c \ | ||
$(NULL) | ||
|
||
OBJS += $(addprefix md/os2/$(OBJDIR)/,$(CSRCS:.c=.$(OBJ_SUFFIX))) \ | ||
$(addprefix md/os2/$(OBJDIR)/,$(ASFILES:.s=.$(OBJ_SUFFIX))) | ||
|