###############################################
#
# WMake Makefile for Test Service
#
# (C) Copyright 1992 by GO Corporation, All Rights Reserved.
#
# You may use this Sample Code any way you please provided you 
# do not resell the code and that this notice (including the above 
# copyright notice) is reproduced on all copies.  THIS SAMPLE CODE 
# IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, AND GO CORPORATION 
# EXPRESSLY DISCLAIMS ALL IMPLIED WARRANTIES, INCLUDING BUT NOT 
# LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
# PARTICULAR PURPOSE. IN NO EVENT WILL GO CORPORATION BE LIABLE TO YOU 
# FOR ANY CONSEQUENTIAL,INCIDENTAL,OR INDIRECT DAMAGES ARISING OUT OF 
# THE USE OR INABILITY TO USE THIS SAMPLE CODE.
#
# $Revision:   1.3  $
#   $Author:   kcatlin  $
#     $Date:   31 Jan 1992 08:40:24  $
#
###############################################

# Set PENPOINT_PATH to your environment variable, if it exists.
# Otherwise, set it to \penpoint
!ifdef %PENPOINT_PATH
PENPOINT_PATH = $(%PENPOINT_PATH)
!else
PENPOINT_PATH = \penpoint
!endif

#  The DOS name of your project directory
PROJ		=	testsvc

#  The linker name for the optional DLL : company-name-V<major>(<minor>)
DLL_LNAME	=	GO-TEST_SERVICE-V1(0)

#  Files for the optional DLL
DLL_OBJS 	=	method.obj testsvc.obj openobj.obj 

LINCS		=	testsvc.h openobj.h

#  Libs needed to build the optional DLL
DLL_LIBS 	= 	penpoint win input service sysutil

DLL_DATA	=	Readonly

DLL_TYPE	= 	service

SERVICE_NAME	=	Test Service

SERVICE_TYPE	=	test

SERVICE_VERSION	=	2.0

#  Standard defines for sample code
!INCLUDE $(PENPOINT_PATH)\sdk\sample\sdefines.mif

# Targets

all: $(DLL_DIR)\$(PROJ).dll .SYMBOLIC

#  The clean rule must be :: because it is also defined in srules
clean :: .SYMBOLIC
 -del method.h

#  Dependencies

testsvc.obj  : testsvc.c testsvc.h

openobj.obj  : openobj.c openobj.h

method.obj	 : method.tbl openobj.h testsvc.h

#  Standard rules for sample code
!INCLUDE $(PENPOINT_PATH)\sdk\sample\svcrules.mif
