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 6# very basic makefile for timer.exe 7# 8# Borland C++ tools 9# 10# BCROOT defines the root directory of your bc builder install 11# 12 13!ifndef BCROOT 14BCROOT=$(MAKEDIR)\.. 15!endif 16 17BCC32 = $(BCROOT)\bin\Bcc32.exe 18 19IDE_LinkFLAGS32 = -L$(BCROOT)\LIB 20COMPOPTS= -O2 -tWC -tWM- -Vx -Ve -D_NO_VCL; -I../../../../; -L..\..\build\bcb4 21 22 23timer.exe : regex_timer.cpp 24 $(BCC32) @&&| 25 $(COMPOPTS) -e$@ regex_timer.cpp 26| 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52