Makefile
changeset 98 c9cc4eda6dce
parent 88 d2ec96c80efe
child 100 24231ff0016c
equal deleted inserted replaced
88:d2ec96c80efe 98:c9cc4eda6dce
     1 # Copyright 2009 The Go Authors.  All rights reserved.
       
     2 # Use of this source code is governed by a BSD-style
       
     3 # license that can be found in the LICENSE file.
       
     4 
       
     5 include $(GOROOT)/src/Make.inc
       
     6 
       
     7 TARG=cjyar/xmpp
       
     8 GOFILES=\
       
     9 	xmpp.go \
       
    10 	roster.go \
       
    11 	stream.go \
       
    12 	structs.go \
       
    13 
       
    14 examples: install
       
    15 	gomake -C examples all
       
    16 
       
    17 clean: clean-examples
       
    18 
       
    19 clean-examples:
       
    20 	gomake -C examples clean
       
    21 
       
    22 include $(GOROOT)/src/Make.pkg