author | Chris Jones <chris@cjones.org> |
Sun, 01 Jan 2012 17:19:03 -0700 | |
changeset 41 | c8c9e6a7e6c9 |
parent 36 | 9fe022261dcc |
permissions | -rw-r--r-- |
0
6dbd969c8f3a
Some initial data structures from RFC 3920, up through section 4.
Chris Jones <chris@cjones.org>
parents:
diff
changeset
|
1 |
# Copyright 2009 The Go Authors. All rights reserved. |
6dbd969c8f3a
Some initial data structures from RFC 3920, up through section 4.
Chris Jones <chris@cjones.org>
parents:
diff
changeset
|
2 |
# Use of this source code is governed by a BSD-style |
6dbd969c8f3a
Some initial data structures from RFC 3920, up through section 4.
Chris Jones <chris@cjones.org>
parents:
diff
changeset
|
3 |
# license that can be found in the LICENSE file. |
6dbd969c8f3a
Some initial data structures from RFC 3920, up through section 4.
Chris Jones <chris@cjones.org>
parents:
diff
changeset
|
4 |
|
6dbd969c8f3a
Some initial data structures from RFC 3920, up through section 4.
Chris Jones <chris@cjones.org>
parents:
diff
changeset
|
5 |
include $(GOROOT)/src/Make.inc |
6dbd969c8f3a
Some initial data structures from RFC 3920, up through section 4.
Chris Jones <chris@cjones.org>
parents:
diff
changeset
|
6 |
|
6dbd969c8f3a
Some initial data structures from RFC 3920, up through section 4.
Chris Jones <chris@cjones.org>
parents:
diff
changeset
|
7 |
TARG=cjyar/xmpp |
6dbd969c8f3a
Some initial data structures from RFC 3920, up through section 4.
Chris Jones <chris@cjones.org>
parents:
diff
changeset
|
8 |
GOFILES=\ |
6dbd969c8f3a
Some initial data structures from RFC 3920, up through section 4.
Chris Jones <chris@cjones.org>
parents:
diff
changeset
|
9 |
xmpp.go \ |
36
9fe022261dcc
Added a capability to use extensions. There are still some bugs with
Chris Jones <chris@cjones.org>
parents:
18
diff
changeset
|
10 |
roster.go \ |
10 | 11 |
stream.go \ |
1
a01e06faf0db
Added code to look up SRV records and open a TCP connection.
Chris Jones <chris@cjones.org>
parents:
0
diff
changeset
|
12 |
structs.go \ |
0
6dbd969c8f3a
Some initial data structures from RFC 3920, up through section 4.
Chris Jones <chris@cjones.org>
parents:
diff
changeset
|
13 |
|
18
9f4af32925bf
Makefile improvements to handle the examples package.
Chris Jones <chris@cjones.org>
parents:
17
diff
changeset
|
14 |
examples: install |
9f4af32925bf
Makefile improvements to handle the examples package.
Chris Jones <chris@cjones.org>
parents:
17
diff
changeset
|
15 |
gomake -C examples all |
9f4af32925bf
Makefile improvements to handle the examples package.
Chris Jones <chris@cjones.org>
parents:
17
diff
changeset
|
16 |
|
9f4af32925bf
Makefile improvements to handle the examples package.
Chris Jones <chris@cjones.org>
parents:
17
diff
changeset
|
17 |
clean: clean-examples |
9f4af32925bf
Makefile improvements to handle the examples package.
Chris Jones <chris@cjones.org>
parents:
17
diff
changeset
|
18 |
|
9f4af32925bf
Makefile improvements to handle the examples package.
Chris Jones <chris@cjones.org>
parents:
17
diff
changeset
|
19 |
clean-examples: |
9f4af32925bf
Makefile improvements to handle the examples package.
Chris Jones <chris@cjones.org>
parents:
17
diff
changeset
|
20 |
gomake -C examples clean |
17 | 21 |
|
0
6dbd969c8f3a
Some initial data structures from RFC 3920, up through section 4.
Chris Jones <chris@cjones.org>
parents:
diff
changeset
|
22 |
include $(GOROOT)/src/Make.pkg |