blob: 853abfc6649ed8ddc930776fdce63fc5d28e0bda (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# flext tutorial examples
# Copyright (c) 2001-2003 Thomas Grill (xovo@gmx.net)
#
# Makefile for gcc @ cygwin
#
# usage: make -f makefile.pd-cygwin
#
# -----------------------------------------------------
#
# note: the thread examples don't compile with cygwin
#
# -----------------------------------------------------
include config-pd-cygwin.txt
FLEXTLIB=$(FLEXTPATH)/flext-pdwin.lib
INCLUDES=$(PDPATH)/src
LIBPATH=$(PDPATH)/bin
FLAGS=-DFLEXT_SYS=2
CFLAGS=${UFLAGS} -O6 -fno-rtti
LIBS=m pd
# the rest can stay untouched
# ----------------------------------------------
# all the source files from the package
EXAMPLES=simple1 simple2 simple3 adv1 adv2 adv3 timer1 attr1 attr2 attr3 signal1~ signal2~ lib1 # thread1 thread2
ifdef SNDOBJ
INCLUDES+=$(SNDOBJ)
EXAMPLES+=sndobj1~
LIBS+=sndobj
endif
ifdef STK
INCLUDES+=$(STK)
EXAMPLES+=stk1~ stk2~
LIBS+=stk
endif
TARGETS=$(patsubst %,$(OUTPATH)/%.dll,$(EXAMPLES))
# default target
all: $(OUTPATH) $(TARGETS)
$(OUTPATH)/%~.dll : $(OUTPATH)/%.dll
mv $^ $@
$(SRCS): $(HDRS)
touch $@
$(OUTPATH):
-mkdir $(OUTPATH)
$(OUTPATH)/%.o : %/main.cpp
$(CXX) -c $(CFLAGS) $(FLAGS) $(patsubst %,-I%,$(INCLUDES) $(FLEXTPATH)) $< -o $@
$(OUTPATH)/%.dll : $(OUTPATH)/%.o $(FLEXTLIB)
$(CXX) $(LDFLAGS) -shared $(patsubst %,-L%,$(LIBPATH)) $^ $(patsubst %,-l%,$(LIBS)) -o $@
rm $<
chmod 755 $@
.PHONY: clean
clean:
rm -f $(OUTPATH)/*.o $(TARGETS)
|