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

SQL Server

开发平台:

Unix_Linux

  1. ##########################################################################
  2. ##                  GNU SQL Compiler  (parser's phase)                  ##
  3. ##########################################################################
  4. ##
  5. ## $Id: Makefile.src.parse.in,v 1.246 1997/04/03 14:41:20 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. ##          other setups                                                ##
  34. ##======================================================================##
  35. TPH=$(INC)/type_lib.h
  36. ##########################################################################
  37. all server: announce $(LIBSER)
  38. client: announce $(LIBCLI)
  39. install   : $(LIBCL_DEP) monitor
  40. $(CP)  monitor $(CLNT)
  41. libgss_cli : scan_c.$(O)
  42. echo $? >$@
  43. libgss_ser : parse.$(O)  scan_s.$(O)
  44. echo $? >$@
  45. t : parseNEW.$(O)
  46. parse.c parse.h : parse.y
  47. #parse.c   : parse.y
  48. scan_c.c  : scan_c.l
  49. scan_s.c  : scan_s.l
  50. monitor: monitor.$(O) 
  51. $(LD) monitor.$(O) $(CLLIBS) -o $@
  52. monitor.o : monitor.c $(INC)/xmem.h $(INC)/dyn_funcs.h
  53. monitor.c : monitor.l
  54. scan_s.$(O)  : scan_s.c $(TRL)/trl.h $(INC)/xmem.h parse.h $(INC)/const.h
  55. scan_c.$(O)  : scan_c.c $(LINC)/gsqltrn.h procname.h $(INC)/sql_decl.h $(INC)/xmem.h
  56. parse.$(O)   : parse.c parse.h procname.h $(INC)/tree_gen.h $(INC)/cycler.h $(TPH)
  57. clean::
  58. - $(RM) y.tab* *.out* lex.* 
  59. - $(RM) scan*.c monitor.c monitor