CC=g++
COPTS=-std=c++0x
LIBS=-lsa_api
EXE=test

all:
	$(CC) $(COPTS) main.cpp -o test $(LIBS)
clean:
	rm -f $(EXE) *~

