~ubuntu-branches/ubuntu/utopic/gridengine/utopic

« back to all changes in this revision

Viewing changes to source/libs/comm/examples/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-25 22:36:13 UTC
  • Revision ID: james.westby@ubuntu.com-20080625223613-tvd9xlhuoct9kyhm
Tags: upstream-6.2~beta2
ImportĀ upstreamĀ versionĀ 6.2~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
###############################################################################
 
2
# Variable definitions for targets to build
 
3
###############################################################################
 
4
#___INFO__MARK_BEGIN__
 
5
##########################################################################
 
6
#
 
7
#  The Contents of this file are made available subject to the terms of
 
8
#  the Sun Industry Standards Source License Version 1.2
 
9
#
 
10
#  Sun Microsystems Inc., March, 2001
 
11
#
 
12
#
 
13
#  Sun Industry Standards Source License Version 1.2
 
14
#  =================================================
 
15
#  The contents of this file are subject to the Sun Industry Standards
 
16
#  Source License Version 1.2 (the "License"); You may not use this file
 
17
#  except in compliance with the License. You may obtain a copy of the
 
18
#  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 
19
#
 
20
#  Software provided under this License is provided on an "AS IS" basis,
 
21
#  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 
22
#  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 
23
#  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 
24
#  See the License for the specific provisions governing your rights and
 
25
#  obligations concerning the Software.
 
26
#
 
27
#  The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 
28
#
 
29
#  Copyright: 2001 by Sun Microsystems, Inc.
 
30
#
 
31
#  All Rights Reserved.
 
32
#
 
33
##########################################################################
 
34
#___INFO__MARK_END__
 
35
COMM_EXAMPLES_DIR = $(SDIR)/libs/comm/examples
 
36
 
 
37
COMMLISTSLIB = libcommlists$(LIBEXT)
 
38
COMMLIB      = libcomm$(LIBEXT)
 
39
 
 
40
COMM_EXAMPLES_SRC =       \
 
41
         server_demo.c    \
 
42
         client_demo.c
 
43
         
 
44
         
 
45
 
 
46
COMM_EXAMPLES_OBJS = $(COMM_EXAMPLES_SRC:.c=.o)
 
47
 
 
48
 
 
49
###############################################################################
 
50
# global rules: all, clean, depend, messages
 
51
###############################################################################
 
52
commexamples_all: server_demo client_demo
 
53
 
 
54
 
 
55
commexamples_clean:
 
56
                $(RM) $(COMM_EXAMPLES_OBJS) server_demo client_demo
 
57
 
 
58
commexamples_depend:
 
59
                $(DEPEND) -f $(COMM_EXAMPLES_DIR)/commexamples_dependencies $(COMM_EXAMPLES_DIR)/*.c
 
60
 
 
61
commexamples_messages:
 
62
        @echo Creating $@
 
63
        @for i in `ls $(COMM_EXAMPLES_DIR)/*.c`; do \
 
64
           $(CC) $(CFLAGS) -DEXTRACT_MESSAGES -E $$i | $(XGETTEXT) - ;\
 
65
        done
 
66
 
 
67
###############################################################################
 
68
# include dependencies for object files generated by sge_depend
 
69
###############################################################################
 
70
include $(COMM_EXAMPLES_DIR)/commexamples_dependencies
 
71
 
 
72
###############################################################################
 
73
# rules to build object codes
 
74
###############################################################################
 
75
server_demo: server_demo.o $(COMMLIB) $(COMMLISTSLIB) $(UTILIB) $(WINGRIDLIB_DEP) $(LCKLIB) $(RMONLIB)
 
76
        $(CC) -o server_demo $(LFLAGS) server_demo.o $(SECLIB) $(COMMLIB) $(COMMLISTSLIB) $(UTILIB) $(WINGRIDLIB) $(LCKLIB) $(RMONLIB) $(DLLIB) $(LIBS)
 
77
 
 
78
client_demo: client_demo.o $(COMMLIB) $(COMMLISTSLIB) $(UTILIB) $(WINGRIDLIB_DEP) $(LCKLIB) $(RMONLIB)
 
79
        $(CC) -o client_demo $(LFLAGS) client_demo.o $(SECLIB) $(COMMLIB) $(COMMLISTSLIB) $(UTILIB) $(WINGRIDLIB) $(LCKLIB) $(RMONLIB) $(DLLIB) $(LIBS)
 
80
 
 
81
 
 
82
server_demo.o: $(COMM_EXAMPLES_DIR)/server_demo.c
 
83
        $(CC) $(CFLAGS) -c $(COMM_EXAMPLES_DIR)/server_demo.c
 
84
client_demo.o: $(COMM_EXAMPLES_DIR)/client_demo.c
 
85
        $(CC) $(CFLAGS) -c $(COMM_EXAMPLES_DIR)/client_demo.c