#pso.make a makefile
CXXFLAGS=-g -Wall
CFLAGS=-g

test: test.o
	g++ $(CXXFLAGS) -o test test.o

test.o: test.cc
#	g++ -c test.cc
#

clean:  
	rm test *.o

# END OF MAKE FILE

