aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/makefile.pd-bcc
blob: 5bb5af62ffb874876753e886e7fab0638adc0957 (plain)
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
# flext - C++ layer for Max/MSP and pd (pure data) externals
# Copyright (c) 2001-2004 Thomas Grill (gr@grrrr.org)
#
# Makefile for BCC++
#
#
# IMPORTANT: Adjust some of the paths also in makefile-inc.bcc
#
# usage: make -f makefile.pd-bcc
#
# ---------------------------------------------------------------

all: flext flext_t flext_d flext_td

flext:
	make /f make-inc.pd-bcc  NAME=$* 

flext_d:
	make /f make-inc.pd-bcc  NAME=$* DEBUG=1

flext_t:
	make /f make-inc.pd-bcc  NAME=$* THREADED=1

flext_td:
	make /f make-inc.pd-bcc  NAME=$* THREADED=1 DEBUG=1


clean:
	make /f make-inc.pd-bcc  clean