#
# makefile    for Visual C++
#
# use nmake.exe to make this
#

TARGET	=	hue-test.exe
OBJS	=	hue-test.obj
LIBS	=	libcurl_a.lib jsmn.lib
LIBPATH	=	lib
INCPATH	=	-I"include/curl" -I"include"
CFLAGS	=	-c -DCURL_STATICLIB $(INCPATH)

.c.obj:
	cl $(CFLAGS) $<
$(TARGET):	$(OBJS)
	cl $(OBJS) $(LIBS) /link/LIBPATH:$(LIBPATH) /out:$(TARGET)
