CPP = g++ 
//CPPFLAGS = -I/Users/Florent/Informatique/boost_1_44_0/ 
//LDFLAGS = -L/Users/Florent/Informatique/boost_1_44_0/stage/lib/ 

PROG = mon_ex 
HDRS = Polymere.hpp Particule.hpp 
SRCS = test_Polymere_TP3.cpp Polymere.cpp Particule.cpp 
OBJS = $(SRCS:.cpp=.o)

$(PROG) : $(OBJS)
	$(CPP) $(LDFLAGS) $(OBJS) -o $(PROG)

test_Polymere.o : test_Polymere_TP3.cpp Polymere.hpp Particule.hpp
Polymere.o : Polymere.cpp Polymere.hpp Particule.hpp
Particule.o : Particule.cpp Particule.hpp


mon_clean :
	rm -f $(PROG) $(OBJS)