1226031Sstas########################################################################
2226031Sstas#
3226031Sstas# Copyright (c) 2010, Secure Endpoints Inc.
4226031Sstas# All rights reserved.
5226031Sstas#
6226031Sstas# Redistribution and use in source and binary forms, with or without
7226031Sstas# modification, are permitted provided that the following conditions
8226031Sstas# are met:
9226031Sstas#
10226031Sstas# - Redistributions of source code must retain the above copyright
11226031Sstas#   notice, this list of conditions and the following disclaimer.
12226031Sstas#
13226031Sstas# - Redistributions in binary form must reproduce the above copyright
14226031Sstas#   notice, this list of conditions and the following disclaimer in
15226031Sstas#   the documentation and/or other materials provided with the
16226031Sstas#   distribution.
17226031Sstas#
18226031Sstas# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19226031Sstas# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20226031Sstas# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
21226031Sstas# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
22226031Sstas# COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
23226031Sstas# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
24226031Sstas# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25226031Sstas# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26226031Sstas# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27226031Sstas# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
28226031Sstas# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29226031Sstas# POSSIBILITY OF SUCH DAMAGE.
30226031Sstas#
31226031Sstas
32226031SstasRELDIR=base
33226031Sstas
34226031Sstas!include ../windows/NTMakefile.w32
35226031Sstas
36226031SstasINCFILES=$(INCDIR)\heimbase.h
37226031Sstas
38226031Sstaslibheimbase_OBJS =		\
39226031Sstas	$(OBJ)\array.obj	\
40226031Sstas	$(OBJ)\bool.obj		\
41226031Sstas	$(OBJ)\dict.obj		\
42226031Sstas	$(OBJ)\heimbase.obj	\
43226031Sstas	$(OBJ)\null.obj		\
44226031Sstas	$(OBJ)\number.obj	\
45226031Sstas	$(OBJ)\string.obj
46226031Sstas
47226031Sstas$(LIBHEIMBASE): $(libheimbase_OBJS)
48226031Sstas	$(LIBCON)
49226031Sstas
50226031Sstasall:: $(INCFILES) $(LIBHEIMBASE)
51226031Sstas
52226031Sstasclean::
53226031Sstas	-$(RM) $(INCFILES)
54