bcb4.mak 613 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. # Borland C++ tools
  8. #
  9. # BCROOT defines the root directory of your bc builder install
  10. #
  11. !ifndef BCROOT
  12. BCROOT=$(MAKEDIR)\..
  13. !endif
  14. BCC32 = $(BCROOT)\bin\Bcc32.exe
  15. IDE_LinkFLAGS32 = -L$(BCROOT)\LIB
  16. COMPOPTS= -O2 -tWC -tWM- -Vx -Ve -D_NO_VCL; -I../../../../; -L..\..\build\bcb4
  17. timer.exe : regex_timer.cpp
  18. $(BCC32) @&&|
  19. $(COMPOPTS) -e$@ regex_timer.cpp
  20. |