]> git.saurik.com Git - veency.git/blob - iphonevnc/makefile
This version works.
[veency.git] / iphonevnc / makefile
1 all: iPhoneVNC
2
3 clean:
4 rm -f iPhoneVNC
5
6 test: all
7 ./iPhoneVNC
8
9 iPhoneVNC: 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