aboutsummaryrefslogtreecommitdiff
path: root/OSC/makefile
blob: 8534bc931a5b6f62767a51f49052df55dafc23ff (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
###############################
# change these
IFLAGS = -I. -I../../pd-0.34-4/src
INSTALL_PREFIX=/usr

# should be oke below ..
EXT = o
#DEFS =  -DHAVE_LIBC=1 -DHAVE_LIBM=1 -DHAVE_LIBPTHREAD=1 -DSTDC_HEADERS=1 -DHAVE_FCNTL_H=1 -DHAVE_SYS_TIME_H=1 -DHAVE_UNISTD_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_SELECT=1 -DHAVE_SOCKET=1 -DHAVE_STRERROR=1  -DPD_VERSION_MINOR=32
DEFS =
CC = gcc
CXX = c++
LD = ld
AFLAGS = 
LFLAGS = -export_dynamic  -shared
WFLAGS =

# DEBUG = -DDEBUG -g
DEBUG = 

VERSION = \"$(shell cat VERSION)\"

.SUFFIXES: .$(EXT)

PDCFLAGS = -O2 $(DEFS) $(IFLAGS) $(WFLAGS) $(LFLAGS) $(AFLAGS) -DVERSION=$(VERSION)
CFLAGS = -O2 $(DEFS) $(IFLAGS) $(WFLAGS) -DVERSION=$(VERSION) $(DEBUG)
CXXFLAGS = $(CFLAGS)
LIBOSC = 	../libOSC/libOSC.a
LIBS = -lpthread -lm -lc 
SOURCES = htmsocket.c OSC-pattern-match.c sendOSC.c dumpOSC.c routeOSC.c
TARGETS = $(SOURCES:.c=.$(EXT)) 

all: $(TARGETS) 

OSC: $(TARGETS)
	cc -c $(CFLAGS) -DPD OSC.c
	$(LD) -export_dynamic  -shared -o OSC.pd_linux *.o $(LIBS) $(LIBOSC)
	strip --strip-unneeded OSC.pd_linux

clean::
	-rm *.$(EXT) *.pd_linux *~

distclean: clean
	-rm config.cache config.log config.status makefile


distcleancvs:
	-rm -r CVS reference/CVS


.c.o:
	$(CC) -c -o $@ $(CFLAGS) -DPD $*.c

# cp $@ $*_stat.o

#.o.pd_linux:
#	$(CC) -o $@ $(PDCFLAGS) -DPD $*.o



install::
	install -d $(INSTALL_PREFIX)/lib/pd/externs
#	install -m 644 *.pd_linux $(INSTALL_PREFIX)/lib/pd/externs
	install -m 644 OSC.pd_linux $(INSTALL_PREFIX)/lib/pd/externs
	install -d $(INSTALL_PREFIX)/lib/pd/doc/5.reference/OSC
	install -m 644 ../doc/*.pd $(INSTALL_PREFIX)/lib/pd/doc/5.reference/OSC


#dist: distclean
#	(cd ..;tar czvf ggext.tgz ggext)