
all: test

test:
	gcc test.cpp ../libming.a -o test -lm

clean:
	rm -f test.o test

