# ------------------------------------------------------------------------
# Dat2Mini.MAK (C) CopyLeft Bill Buckels 2006
# All Rights Reversed.
#
# Licence Agreement
# -----------------
#
# You have a royalty-free right to use, modify, reproduce and
# distribute this source code in any way you find useful,
# provided that you agree that Bill Buckels has no warranty obligations
# or liability resulting from said distribution in any way whatsoever.
# If you don't agree, remove this source code from your computer now.
#
# Written by   : Bill Buckels
# Email        : bbuckels@mts.net
#
# Date Written : May 2008
# Purpose      : Make File for Dat2Mini
# Revision     : 1.0 Win32 Version
# ------------------------------------------------------------------------
# Compiled as a Console Application in Visual Studio 2005
# ------------------------------------------------------------------------
#  
# For anyone who doesn't already know... 
# Microsoft have released free (for personal use) 
# functional editions of their programming languages at the link below. 
# Their "express" editions also include MSSQL server.
#
# http://msdn.microsoft.com/vstudio/express/
#  
# The licencing for the express editions is free forever. 
#  
# If you want additional information on tweaking Visual C++ 2005
# to support Win32 Development 
# and command line development using Make files,  use the link below:
#  
# http://msdn.microsoft.com/vstudio/express/visualc/usingpsdk/
# ------------------------------------------------------------------------
PROJ = Dat2MiniX

all: $(PROJ).exe

# Define project specific macros
cc  = cl 

# Build rule for EXE
$(PROJ).EXE: $(PROJ).c MAKEFILE  
    $(cc) -D_CRT_SECURE_NO_DEPRECATE $(PROJ).c 
    del *.obj
 
    

# Rules for cleaning out those old files
clean:
    del *.bak *.pdb *.obj *.exp *.map *.sbr *.bsc


