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

« back to all changes in this revision

Viewing changes to source/libs/spool/classic/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
OLDSPOOLCLIB_DIR = $(SDIR)/libs/spool/classic
 
36
 
 
37
OLDSPOOLCLIB = libspoolc_old$(LIBEXT)
 
38
 
 
39
OLDSPOOLCLIB_SRC = \
 
40
         read_write_job.c
 
41
OLDSPOOLCLIB_OBJS = $(OLDSPOOLCLIB_SRC:.c=.o)
 
42
 
 
43
###############################################################################
 
44
# global rules: all, clean, depend, messages
 
45
###############################################################################
 
46
spoolclib_old: $(OLDSPOOLCLIB)
 
47
 
 
48
spoolclib_old_clean:
 
49
                $(RM) $(OLDSPOOLCLIB_OBJS) libspoolc_old.a libspoolc_old$(SHAREDEXT)
 
50
 
 
51
spoolclib_old_depend:
 
52
                $(DEPEND) -f$(OLDSPOOLCLIB_DIR)/spoolc_old_dependencies $(OLDSPOOLCLIB_DIR)/*.c
 
53
 
 
54
spoolclib_old_messages:
 
55
        @echo Creating $@
 
56
        @for i in `ls $(OLDSPOOLCLIB_DIR)/*.c`; do \
 
57
           $(CC) $(CFLAGS) -DEXTRACT_MESSAGES -E $$i | $(XGETTEXT) - ;\
 
58
        done
 
59
 
 
60
###############################################################################
 
61
# rules to build library
 
62
###############################################################################
 
63
libspoolc_old.a:        $(OLDSPOOLCLIB_OBJS) 
 
64
        $(AR) $(ARFLAGS) libspoolc_old.a $(OLDSPOOLCLIB_OBJS)
 
65
        $(RANLIB) libspoolc_old.a
 
66
 
 
67
libspoolc_old$(SHAREDEXT): $(OLDSPOOLCLIB_OBJS) $(SPOOLLIB) $(SCHEDLIB) $(SGEOBJLIB) $(SGEOBJDLIB) $(COMMLIB) $(COMMLISTSLIB) $(CULLLIB) $(UTILIB) $(RMONLIB) $(LCKLIB)
 
68
        $(SHAREDLD) $(SHARED_LFLAGS) -o libspoolc_old$(SHAREDEXT) $(OLDSPOOLCLIB_OBJS) -lspool -lsched -lsgeobj -lsgeobjd -lcull -lcomm -lcommlists -luti -lrmon -llck $(LIBS)
 
69
 
 
70
###############################################################################
 
71
# include dependencies for object files generated by sge_depend
 
72
###############################################################################
 
73
include $(OLDSPOOLCLIB_DIR)/spoolc_old_dependencies
 
74
 
 
75
###############################################################################
 
76
# rules to build object codes
 
77
###############################################################################
 
78
read_write_job.o:       $(OLDSPOOLCLIB_DIR)/read_write_job.c
 
79
                $(CC) $(CFLAGS) $(SHARED_CFLAGS) -c $(OLDSPOOLCLIB_DIR)/read_write_job.c
 
80