forked from fajran/tongseng
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMakefile
More file actions
executable file
·36 lines (29 loc) · 726 Bytes
/
Makefile
File metadata and controls
executable file
·36 lines (29 loc) · 726 Bytes
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
SRC=main.cpp \
tongsengmod.cpp \
TUIO/TuioServer.cpp \
TUIO/TuioTime.cpp \
TUIO/TuioManager.cpp \
TUIO/TuioObject.cpp \
TUIO/TuioCursor.cpp \
TUIO/TuioContainer.cpp \
TUIO/TuioPoint.cpp \
TUIO/TuioBlob.cpp \
TUIO/TuioDispatcher.cpp \
TUIO/UdpSender.cpp \
oscpack/ip/posix/NetworkingUtils.cpp \
oscpack/ip/posix/UdpSocket.cpp \
oscpack/osc/OscOutboundPacketStream.cpp \
oscpack/osc/OscTypes.cpp
OBJS=$(SRC:.cpp=.o)
CPPFLAGS=-ITUIO -Ioscpack
LIBS=-F/System/Library/PrivateFrameworks -framework MultitouchSupport -framework Carbon
BIN=tongsengmod
all : $(BIN)
.cpp.o :
g++ -c $(CPPFLAGS) $< -o $@
$(BIN) : $(OBJS)
g++ -o $@ $(LIBS) $^
clean :
rm -f $(BIN) $(OBJS)
install:
cp tongsengmod /usr/local/bin