#-----------------------------------------------------------------------------
# Makefile for debug.lib
#-----------------------------------------------------------------------------
COMPILER	= PSYQ_PSX		# Only WATCOM supported
TARGET		= PSX			# Only NT is supported
SRC_PATH	= .;..\			# Set to path to look for sources
INC_PATH	= .;..\			# Set to path to look for include files
LIB_PATH	= libs			# Set to path to look for libraries
OBJ_PATH	= obj			# Set to path to store object files


#-----------------------------------------------------------------------------
#
all:	node.lib .AUTODEPEND


#-----------------------------------------------------------------------------
#
NAME		= node
TYPE		= lib
OBJS		= $(OBJ_PATH)\node.obj
LIBS		= 
!include	\\sol\libs\master1.mif


#-----------------------------------------------------------------------------
# Update the library on the network
#
update: .symbolic
	cvs commit
	@wmake clean all DEBUG=0
	@if exist node.lib @copy node.lib \\sol\libs\node\psx\node.lib >nul
	@wmake clean all DEBUG=3
	@if exist node.lib @copy node.lib \\sol\libs\node\psx\node.dbg >nul
	@copy ..\*.h \\sol\libs\node\psx >nul
	@echo ----------------------------------------------
	@echo Debug library updated on \\sol\libs for PSX.


!include	\\sol\libs\master.mif



###########################################################
##
##all:	debug_test	lib/libdmgdebug.a
##
##debug_test: debug.c
##	cc -g -Wall -DTESTMAIN debug.c -o debug_test
##
##lint:
##	flexelint -DTESTMAIN *.c
##
##release:	debug_test	lib/libdmgdebug.a
##	./debug_test
##	cvs commit
##	cp dbdebug.h /usr/include/dimaga
##	cp lib/libdmgdebug.a /usr/local/lib
##
##lib/libdmgdebug.a:	debug.o
##	ar -r lib/libdmgdebug.a debug.o
###########################################################

