#
#	Makefile for x86 32bit
#
#	Use VS.NET command prompt for making the binary.
#

INC=	-I. -I..\..\inc
CFLAGS=	-DDEBUG $(INC) -Zi -Debug

TARG=	mkcct
OBJS=	mkcct.obj

all:	$(TARG).exe
$(TARG).exe:	$(OBJS)
	cl $(CFLAGS) -o $@ $(OBJS)

clean:
	if exist *.exe del *.exe
	if exist *.obj del *.obj

