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

SQL Server

开发平台:

Unix_Linux

  1. ##########################################################################
  2. ##                    GNU SQL Compiler                                  ##
  3. ##########################################################################
  4. ##
  5. ## $Id: Makefile.src.in,v 1.247 1997/04/06 17:38:14 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. all:    install #TAGS #compile_all
  36. date
  37. timetest:
  38. time $(MAKE)
  39. ansi2knr: 
  40. ( cd other; $(MAKERT) a2k )
  41. ### convert all files in subtree to knr style
  42. $(A2K)
  43. echo touchstamp >$@
  44. prepdirs: @A2K_entry@
  45. [ -d $(SERVDIR) ] || mkdir -p $(SERVDIR)
  46. [ -d $(SERVBIN) ] || mkdir -p $(SERVBIN)
  47. [ -d $(CLNT)    ] || mkdir -p $(CLNT)
  48. [ -d $(LIB)     ] || mkdir -p $(LIB)
  49. install : compile_all
  50. ( cd comp-lib ; $(MAKERT) install ;)
  51. ( cd main     ; $(MAKERT) install ;)
  52. ( cd parse    ; $(MAKERT) install ;) ## make monitor and copy it to client area
  53. ( cd other    ; $(MAKERT) srcs    ;) ## check out from RCS unreuired stuff
  54. compile_all: server client  adm-utilities
  55. # client => interpretator client library and client part of the compiler
  56. client: prepdirs $(LIBCLI) 
  57. - ( cd main; $(MAKERT) client; )
  58. server: prepdirs ENGINE services
  59. services: $(LIBSER) 
  60. ( cd main; $(MAKERT) server; )
  61. ENGINE : headers libgss_ser
  62. ( cd engine ; $(MAKERT) ;)
  63. adm-utilities: prepdirs 
  64. (cd comp-lib; $(MAKERT) binaries ;)
  65. libgss_ser : headers 
  66. echo "== << server library "
  67. (cd other   ; $(MAKERT) server ;)
  68. (cd trl     ; $(MAKERT) ;)
  69. (cd kitty   ; $(MAKERT) ;)
  70. (cd comp-lib; $(MAKERT) ;)
  71. (cd parse   ; $(MAKERT) server ;)
  72. (cd semantic; $(MAKERT) ;)
  73. (cd opt     ; $(MAKERT) ;)
  74. (cd synthes ; $(MAKERT) ;)
  75. (cd interpr ; $(MAKERT) server;)
  76. echo "== >> server library made"
  77. libgss_cli : headers
  78. echo "== << client library "
  79. (cd other   ; $(MAKERT) client;)
  80. (cd parse   ; $(MAKERT) client;)
  81. (cd interpr ; $(MAKERT) client;)
  82. echo "== >> client library made"
  83. headers:
  84. echo "== << Checking includes"
  85. (cd include ; $(MAKERT) ;)
  86. test:  compile_all
  87. ( cd ../test ;  $(MAKE); )
  88. TAGS: force
  89. etags */*.x */*.y */*.l */*.k */*.def */*.h */*/*.h make* */*.c */*/*.c
  90. clean::
  91. [ ! -f TAGS ] || $(RM) TAGS