]> git.saurik.com Git - veency.git/blame_incremental - iphonevnc/makefile
This version works.
[veency.git] / iphonevnc / makefile
... / ...
CommitLineData
1all: iPhoneVNC
2
3clean:
4 rm -f iPhoneVNC
5
6test: all
7 ./iPhoneVNC
8
9iPhoneVNC: iPhoneVNC.mm makefile
10 g++ -g0 -O3 -o $@ $< -I. \
11 -lvncserver -lz \
12 -framework CoreFoundation \
13 -framework CoreGraphics \
14 -framework UIKit \
15 -lobjc \
16 -framework Foundation
17 ldid -S iPhoneVNC
18
19.PHONY: all clean test