#
!IFNDEF ESP_ROOT
!ERROR ESP_ROOT must be set -- Please fix the environment...
!ENDIF
#
IDIR = $(ESP_ROOT)\include
!include $(IDIR)\$(ESP_ARCH).$(MSVC)
LDIR = $(ESP_ROOT)\lib

myExample.exe:	myExample.obj
	cl myExample.obj $(LIBPTH) egads.lib
	$(MCOMP) /manifest myExample.exe.manifest /outputresource:myExample;1

myExample.obj:	myExample.c
	cl /c $(COPTS) $(DEFINE) /I$(IDIR) myExample.c

clean:
	-del myExample.obj

cleanall:	clean
	-del myExample.exe
