Mercurial > osx-quasimode
annotate Makefile @ 21:cdc615772d43
change notification protocol and made test program get notifications instead of relying on debug messages.
author | Atul Varma <avarma@mozilla.com> |
---|---|
date | Mon, 12 Apr 2010 00:43:20 -0700 |
parents | 8053681846ad |
children | 0e91c6d2a547 |
rev | line source |
---|---|
19
8053681846ad
Refactored event tap C code into an Objective-C class.
Atul Varma <avarma@mozilla.com>
parents:
10
diff
changeset
|
1 all: Quasimode TestQuasimodalEventTap |
8053681846ad
Refactored event tap C code into an Objective-C class.
Atul Varma <avarma@mozilla.com>
parents:
10
diff
changeset
|
2 |
10 | 3 Quasimode: JavaScriptQuasimode.o Quasimode.o |
4 clang Quasimode.o JavaScriptQuasimode.o -oQuasimode \ | |
9
d8d966549380
Separated out JS interface implementation from core quasimode implementation
Atul Varma <avarma@mozilla.com>
parents:
7
diff
changeset
|
5 -framework AppKit -framework WebKit \ |
d8d966549380
Separated out JS interface implementation from core quasimode implementation
Atul Varma <avarma@mozilla.com>
parents:
7
diff
changeset
|
6 -framework JavaScriptCore |
10 | 7 |
19
8053681846ad
Refactored event tap C code into an Objective-C class.
Atul Varma <avarma@mozilla.com>
parents:
10
diff
changeset
|
8 TestQuasimodalEventTap: QuasimodalEventTap.o TestQuasimodalEventTap.m |
8053681846ad
Refactored event tap C code into an Objective-C class.
Atul Varma <avarma@mozilla.com>
parents:
10
diff
changeset
|
9 clang TestQuasimodalEventTap.m QuasimodalEventTap.o \ |
8053681846ad
Refactored event tap C code into an Objective-C class.
Atul Varma <avarma@mozilla.com>
parents:
10
diff
changeset
|
10 -oTestQuasimodalEventTap \ |
8053681846ad
Refactored event tap C code into an Objective-C class.
Atul Varma <avarma@mozilla.com>
parents:
10
diff
changeset
|
11 -framework AppKit |
8053681846ad
Refactored event tap C code into an Objective-C class.
Atul Varma <avarma@mozilla.com>
parents:
10
diff
changeset
|
12 |
8053681846ad
Refactored event tap C code into an Objective-C class.
Atul Varma <avarma@mozilla.com>
parents:
10
diff
changeset
|
13 QuasimodalEventTap.o: QuasimodalEventTap.m QuasimodalEventTap.h |
21
cdc615772d43
change notification protocol and made test program get notifications instead of relying on debug messages.
Atul Varma <avarma@mozilla.com>
parents:
19
diff
changeset
|
14 clang -c QuasimodalEventTap.m |
19
8053681846ad
Refactored event tap C code into an Objective-C class.
Atul Varma <avarma@mozilla.com>
parents:
10
diff
changeset
|
15 |
10 | 16 JavaScriptQuasimode.o: JavaScriptQuasimode.m Quasimode.h JavaScriptQuasimode.h |
17 clang -c JavaScriptQuasimode.m | |
18 | |
19 Quasimode.o: Quasimode.m Quasimode.h JavaScriptQuasimode.h | |
20 clang -c Quasimode.m | |
21 | |
22 clean: | |
19
8053681846ad
Refactored event tap C code into an Objective-C class.
Atul Varma <avarma@mozilla.com>
parents:
10
diff
changeset
|
23 rm -f *.o Quasimode TestQuasimodalEventTap |