blob: 2f5e334f3501999dfd97641dbe7c5a677e92544e (
plain) (
tree)
|
|
BRUISER_TEST=test
.DEFAULT:all clean
all:$(BRUISER_TEST)
.cpp.o:
$(CXX) $(CXX_FLAGS) -c $< -o $@
$(BRUISER_TEST): test.cpp
$(CXX) $^ $(LD_FLAGS) -o $@
clean:
rm -f *.o *~ $(BRUISER_TEST)
help:
@echo "the makfile for the bruiser test file."
@echo "there is the taget itself, all and clean."
|