File: Makefile.bcc

package info (click to toggle)
opencv 0.9.5-10
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 24,692 kB
  • ctags: 12,064
  • sloc: cpp: 142,972; sh: 10,060; ansic: 5,404; tcl: 1,106; pascal: 449; makefile: 312; python: 264; perl: 19
file content (27 lines) | stat: -rw-r--r-- 410 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Borland C++ >=5.5

!ifdef debug
OPT= debug=1
!else
OPT= 
!endif

all:
	cd cv\make
	make -f makefile.bcc $(OPT)
	cd ..\..
	cd cvaux\make
	make -f makefile.bcc $(OPT)
	cd ..\..
	cd otherlibs\highgui
	make -f makefile.bcc $(OPT)
	cd ..\..
	cd tests\trs\make
	make -f makefile.bcc $(OPT)
	cd ..\..\..
	cd tests\cv\src
	make -f makefile.bcc $(OPT)
	cd ..\..\..
	cd samples\c
	make -f makefile.bcc $(OPT)
	cd ..\..