summaryrefslogtreecommitdiff
path: root/pr/src/md/windows/objs.mk
blob: eff0e2b1a582a6d548e222af166cbd57c56e2780 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#
# The contents of this file are subject to the Mozilla Public License
# Version 1.1 (the "MPL"); you may not use this file except in
# compliance with the MPL.  You may obtain a copy of the MPL at
# http://www.mozilla.org/MPL/
# 
# Software distributed under the MPL is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the MPL
# for the specific language governing rights and limitations under the
# MPL.
# 
# The Initial Developer of this code under the MPL is Christopher
# Seawood <cls@seawood.org>.  Portions created by Christopher Seawood are
# Copyright (C) 1999 Christopher Seawood. All Rights Reserved.
#

ifeq (WINNT,$(MOZ_TARGET))
CSRCS = ntmisc.c \
	ntsem.c \
	ntinrval.c \
	ntgc.c \
	ntio.c \
	ntthread.c \
	ntdllmn.c \
	win32_errors.c \
	w32poll.c
else
ifeq (WIN95,$(MOZ_TARGET))
CSRCS =	ntmisc.c \
	ntsem.c \
	ntinrval.c \
	ntgc.c \
	w95thred.c \
	w95io.c \
	w95cv.c \
	w95sock.c \
	win32_errors.c \
	w32poll.c \
	w95dllmain.c
else
ifeq (WIN16,$(MOZ_TARGET))
CSRCS =	w16null.c \
	w16thred.c \
	w16proc.c \
	w16fmem.c \
	w16sock.c \
	w16mem.c \
	w16io.c \
	w16gc.c \
	w16error.c \
	w16stdio.c \
	w16callb.c \
	ntinrval.c
endif # win16
endif # win95
endif # winnt

CSRCS	+= $(PR_MD_CSRCS)
ASFILES += $(PR_MD_ASFILES)

OBJS += $(addprefix md/windows/$(OBJDIR)/,$(CSRCS:.c=.$(OBJ_SUFFIX)))  \
	$(addprefix md/windows/$(OBJDIR)/,$(ASFILES:.s=.$(OBJ_SUFFIX)))