# Makefile
CFLAGS += -Ic:/home/project/cunit/include -I.
CFLAGS += -Wall
LDFLAGS += -Lc:/home/project/cunit/lib
LDLIBS = -lcunit


all: utest.exe utest
utest.exe: utest.o 
	$(CC) -o $@ $^ $(LDFLAGS) $(LOADLIBES) $(LDLIBS)

utest:	
	utest.exe
	
.PHONY: all utest

