gcc.mak 566 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. # copyright John Maddock 2003
  2. # Distributed under the Boost Software License, Version 1.0.
  3. # (See accompanying file LICENSE_1_0.txt or copy at
  4. # http://www.boost.org/LICENSE_1_0.txt.
  5. # very basic makefile for timer.exe
  6. #
  7. # GNU compiler GCC
  8. #
  9. CXX= $(INCLUDES) -I../../../../ -I./ $(CXXFLAGS)
  10. timer : regex_timer.cpp
  11. g++ $(CXX) -O2 -o timer regex_timer.cpp -L../../build/gcc $(LDFLAGS) -lboost_regex $(LIBS)
  12. debug : regex_timer.cpp timer.cpp
  13. g++ $(CXX) -g -o timer regex_timer.cpp -L../../build/gcc $(LDFLAGS) -lboost_regex_debug $(LIBS)