Makefile.in
上传用户:dgyhgb
上传日期:2007-01-07
资源大小:676k
文件大小:3k
源码类别:

SQL Server

开发平台:

Unix_Linux

  1. ##########################################################################
  2. ##                 GNU SQL Compiler  (main routines)                    ##
  3. ##########################################################################
  4. ##
  5. ## $Id: Makefile.src.main.in,v 1.245 1997/03/31 03:46:38 kml Exp $
  6. ##
  7. ## This file is a part of GNU SQL Server
  8. ##
  9. ## Copyright (c) 1996, 1997, Free Software Foundation, Inc
  10. ## Developed at Institute of System Programming of Russian Academy of Science
  11. ## This file is written by Michael Kimelman
  12. ##
  13. ## This program is free software; you can redistribute it and/or modify it under
  14. ## the terms of the GNU General Public License as published by the Free
  15. ## Software Foundation; either version 2 of the License, or (at your option)
  16. ## any later version.
  17. ##
  18. ## This program is distributed in the hope that it will be useful, but WITHOUT
  19. ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  20. ## FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
  21. ## more details.
  22. ##
  23. ## You should have received a copy of the GNU General Public License along with
  24. ## this program; if not, write to the Free Software Foundation, Inc.,
  25. ## 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  26. ##
  27. ## Contacts: gss@ispras.ru
  28. ##
  29. srcdir=@srcdir@
  30. VPATH=@srcdir@
  31. include ../Makefile_h
  32. ##########################################################################
  33. #                make program                                            #
  34. ##########################################################################
  35. LD.main=$(LD) $(CFLAGS) $(CPPFLAGS) 
  36. LD.tail=$(srcdir)/gsqltrn_lib.c $(SRLIBS) -o
  37. H = cs_link.c options.c $(LINC)/gsqltrn.h $(INC)/sql_decl.h
  38. COMP_CLI = $(CLNT)/gsqlc
  39. TRNS=boot dyn# types of transactions
  40. all: client server
  41. install: client server
  42. client: $(LIBCL_DEP) gsqlc
  43. - $(RM) $(COMP_CLI) $@
  44. $(CP)  gsqlc $(COMP_CLI)  # compiler client 
  45. echo .>$@
  46. server: $(LIBSR_DEP) gss-adm $(TRNS)
  47. # copy transactons to server lib catalog
  48. - $(RM)  $(SERVBIN)/gsqlt-* $@
  49. echo "refreshing transactions ..." ;
  50. for trn in $(TRNS) ; do 
  51.   echo " : $$trn" ;  
  52.   $(CP)  $$trn $(SERVBIN)/gsqlt-$$trn ; done
  53. echo .>$@
  54. # library dependencies
  55. libgss_ser : servlib.$(O) gsqltrn_svc.$(O) gsqltrn_xdr.$(O) 
  56. echo $? >$@
  57. libgss_cli : dyn_client.$(O) dyn_funcs.$(O) sc.$(O) gsqltrn_clnt.$(O) gsqltrn_xdr.$(O) 
  58. echo $? >$@
  59. gss-adm: # it must be already done -- see engine/adm
  60. echo .>$@
  61. gsqlc    : gsql_cli.$(O) $(LIBCL_DEP)
  62. echo --  generating $@
  63. - $(RM) $@ 
  64. $(LD) gsql_cli.$(O) $(CLLIBS) -o $@ 
  65. $(TRNS) : gsqltrn_lib.c $(LIBSR_DEP)
  66. echo -- generating transaction servers
  67. - $(RM) $(TRNS)
  68. echo '--> boot'
  69. $(LD.main) -DSERVE_BOOT                    $(LD.tail) boot
  70. echo '--> dyn '
  71. $(LD.main) -DSERVE_COMPILE -DSERVE_EXECUTE $(LD.tail) dyn
  72. gsql_cli.$(O)  : gsql_cli.c $(H) $(INC)/cl_lib.h
  73. dyn_client.$(O): dyn_client.c $(H) $(INC)/cl_lib.h 
  74. servlib.$(O)   : servlib.c $(H) $(IINC)/pupsi.h $(INC)/global.h 
  75. dyn_funcs.$(O) : dyn_funcs.c $(H) $(INC)/dyn_funcs.h $(LINC)/gsqltrn.h $(INC)/sql.h
  76. sc.$(O)        : sc.c $(H) $(INC)/type_lib.h
  77. gsqltrn_clnt.$(O): gsqltrn_clnt.c $(LINC)/gsqltrn.h
  78. gsqltrn_svc.$(O): gsqltrn_svc.c $(LINC)/gsqltrn.h
  79. gsqltrn_xdr.$(O): gsqltrn_xdr.c $(LINC)/gsqltrn.h
  80. gsqltrn_clnt.c $(LINC)/gsqltrn.h gsqltrn_svc.c gsqltrn_xdr.c: gsqltrn.x
  81. $(RPCGEN) $(LINC) $(srcdir)/gsqltrn.x
  82. headers : $(LINC)/gsqltrn.h 
  83. clean::
  84. - $(RM) gsqlc $(TRNS) gss-adm 
  85. - $(RM) gsqltrn_clnt.c gsqltrn_svc.c gsqltrn_xdr.c
  86. - $(RM) client server
  87. force:
  88. :
  89. #
  90. #