[go: up one dir, main page]

File: Makefile.bcc

package info (click to toggle)
libcommoncpp2 1.0.13-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 4,740 kB
  • ctags: 2,860
  • sloc: cpp: 18,857; sh: 8,451; ansic: 1,546; makefile: 299; xml: 5
file content (28 lines) | stat: -rw-r--r-- 502 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
28
# GNU Makefile to build CommonC++ using Borland CC 5.5.1

all:: win32 src

win32::
	cd win32 ; $(MAKE) -f Makefile.bcc

src::
	cd src ; $(MAKE) -f Makefile.bcc

demo::
	cd demo ; $(MAKE) -f Makefile.bcc

clean:: win32clean srcclean democlean

win32clean::
	cd win32 ; $(MAKE) -f Makefile.bcc clean

srcclean::
	cd src ; $(MAKE) -f Makefile.bcc clean

democlean::
	cd demo ; $(MAKE) -f Makefile.bcc clean
	
install:
	cd win32 ; $(MAKE) -f Makefile.bcc install
	cd src ; $(MAKE) -f Makefile.bcc install