OBJECTS = binomial.o test.o TARGET = testbinomial CXXFLAGS = -g all : $(OBJECTS) $(CXX) -g -o $(TARGET) $(OBJECTS) clean : rm -f $(OBJECTS) $(TARGET) *~