File: makefile.bcc

package info (click to toggle)
galib 2.4.7-3.1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,224 kB
  • ctags: 3,153
  • sloc: cpp: 23,666; ansic: 520; makefile: 247; sh: 93
file content (33 lines) | stat: -rw-r--r-- 438 bytes parent folder | download | duplicates (4)
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
29
30
31
32
33
# -*- Mode: makefile -*-
# Makefile to build GAlib with Borland tools
# Copyright (c) 1996-2005 Matthew Wall, all rights reserved

all: lib ex

lib:
	cd ga
	make -f makefile.bcc
	cd ..

ex:
	cd examples
	make -f makefile.bcc
	cd ..

test:
	cd examples
	make -f makefile.bcc test
	cd ..

clean:
	cd ga
	make -f makefile.bcc clean
	cd ..
	cd examples
	make -f makefile.bcc clean
	cd ..

install:
	cd ga
	make -f makefile.bcc install
	cd ..