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

SQL Server

开发平台:

Unix_Linux

  1. ##########################################################################
  2. ##                 GNU SQL Server  (server administrator daemon)        ##
  3. ##                                                                      ##
  4. ## Administrator of                                ##
  5. ##  Storage and Transaction Synchrohization Management System           ##
  6. ##     ( engine of SQL-server);                            ##
  7. ##    child prosesses: buf, mj, lj, srt, syn, trn                  ##
  8. ##                                                                      ##
  9. ##########################################################################
  10. ##
  11. ## $Id: Makefile.src.engine.in,v 1.245 1997/03/31 03:46:38 kml Exp $
  12. ##
  13. ## This file is a part of GNU SQL Server
  14. ##
  15. ## Copyright (c) 1996, 1997, Free Software Foundation, Inc
  16. ## Developed at Institute of System Programming of Russian Academy of Science
  17. ## This file is written by Michael Kimelman
  18. ##
  19. ## This program is free software; you can redistribute it and/or modify it under
  20. ## the terms of the GNU General Public License as published by the Free
  21. ## Software Foundation; either version 2 of the License, or (at your option)
  22. ## any later version.
  23. ##
  24. ## This program is distributed in the hope that it will be useful, but WITHOUT
  25. ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  26. ## FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
  27. ## more details.
  28. ##
  29. ## You should have received a copy of the GNU General Public License along with
  30. ## this program; if not, write to the Free Software Foundation, Inc.,
  31. ## 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  32. ##
  33. ## Contacts: gss@ispras.ru
  34. ##
  35. srcdir=@srcdir@
  36. VPATH=@srcdir@
  37. include ../Makefile_h
  38. ##########################################################################
  39. #                make program                                            #
  40. ##########################################################################
  41. SUBDIR=    trans buf jour sort synch rcvutl
  42. all:    install
  43. createdirs: 
  44. - [ -d $(SERVDIR) ] || mkdir -p $(SERVDIR)
  45. - [ -d $(SERVDIR)/db ] || mkdir -p $(SERVDIR)/db
  46. - [ -d $(SERVBIN) ] || mkdir -p $(SERVBIN)
  47. - [ -d $(CLNT) ] || mkdir -p $(CLNT)
  48. - [ ! -f $(SERVDIR)/adm ] || rm -f $(SERVDIR)/adm
  49. - [ ! -f $(SERVBIN)/prepup ] || rm -f $(SERVBIN)/prepup
  50. - [ ! -f $(SERVBIN)/chpars ] || rm -f $(SERVBIN)/chpars
  51. install upgrade: createdirs bin
  52. $(CP)  adm $(SERVDIR)/gsqls
  53. $(CP)  prepup $(SERVBIN)
  54. $(CP)  chpars $(SERVBIN)
  55. boot: instclean upgrade
  56. ( cd $(SERVDIR) ; bin/prepup )
  57. instclean:
  58. - [ -d $(SERVDIR) ] && ( cd $(SERVDIR); rm -r -f * )
  59. bin:    announce client server
  60. client: $(LIBCLI) 
  61. server: subdirs $(LIBSR_DEP) adm prepup chpars
  62. libgss_cli : dispatch_clnt.$(O) dispatch_xdr.$(O)
  63. echo $? >$@
  64. libgss_ser : dispatch_xdr.$(O)
  65. echo $? >$@
  66. subdirs: headers
  67. for dir in $(SUBDIR); do 
  68. ( cd $$dir; $(MAKE) ; );  done
  69. adm:  adm.$(O) dispatch.$(O) dispatch_svc.$(O) $(LIBSR_DEP)
  70. echo --  generating $@
  71. - $(RM) $@ 
  72. $(LD) adm.$(O) dispatch.$(O) dispatch_svc.$(O)  $(SRLIBS) -o $@ 
  73. adm.$(O): adm.c $(LIINC)/dispatch.h $(IINC)/pupsi.h $(INC)/global.h 
  74.     $(IINC)/inpop.h $(IINC)/expop.h   $(IINC)/totdecl.h
  75.     $(IINC)/strml.h $(IINC)/adfstr.h  $(IINC)/rnmtp.h 
  76.     admdef.h rcvutl/puprcv.h 
  77. dispatch.$(O):      dispatch.c      $(LIINC)/dispatch.h admdef.h $(IINC)/totdecl.h
  78. dispatch_svc.$(O):  dispatch_svc.c  $(LIINC)/dispatch.h 
  79. dispatch_clnt.$(O): dispatch_clnt.c $(LIINC)/dispatch.h 
  80. dispatch_xdr.$(O):  dispatch_xdr.c  $(LIINC)/dispatch.h 
  81. dispatch_svc.c dispatch_clnt.c $(LIINC)/dispatch.h dispatch_xdr.c : dispatch.x
  82. $(RPCGEN) $(LIINC) $(srcdir)/dispatch.x
  83. prepup:  prepup.$(O) rcvutl/libini.$(O) $(LIBSR_DEP)
  84. echo --  generating $@
  85. - $(RM) $@ 
  86. $(LD) prepup.$(O) rcvutl/libini.$(O) $(SRLIBS) -o $@ 
  87. prepup.$(O): prepup.c $(IINC)/pupsi.h $(IINC)/destrn.h admdef.h 
  88.     $(IINC)/strml.h $(IINC)/adfstr.h $(IINC)/rnmtp.h trans/gltran.h $(IINC)/totdecl.h 
  89.     
  90. chpars:  chpars.$(O) 
  91. echo --  generating $@
  92. - $(RM) $@ 
  93. $(LD) chpars.$(O) $(CLLIBS) -o $@ 
  94. chpars.$(O): chpars.c $(LIINC)/dispatch.h dyngspar.h gspstr.h
  95. clean::
  96. - $(RM) adm prepup chpars
  97. - $(RM) dispatch_svc.c dispatch_clnt.c dispatch.h dispatch_xdr.c
  98. headers : admdef.h $(LIINC)/dispatch.h dyngspar.h gspstr.h 
  99. ( cd rcvutl ; $(MAKERT) headers)
  100. ( cd synch  ; $(MAKERT) headers)