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

SQL Server

开发平台:

Unix_Linux

  1. ##########################################################################
  2. ##                     GNU SQL Server Sorter                            ##
  3. ##########################################################################
  4. ##
  5. ## $Id: Makefile.src.engine.tsort.in,v 1.1 1997/04/21 07:00:29 vera 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. all: install
  33. install: bin
  34. - [ -d $(SERVBIN) ] || mkdir -p $(SERVBIN)
  35. $(CP)  sort $(SERVBIN)/srt
  36. bin: sort
  37. SRC=cmpkey.c extsrt.c push.c puts.c quicksor.c rkfrm.c sort.c srtipc.c tidsrt.c
  38. SRCOBS= ${SRC:.c=.$(O)}
  39. SRT_H_DEPS= dessrt.h $(IINC)/destrn.h $(IINC)/rnmtp.h $(IINC)/pupsi.h 
  40.     $(IINC)/tptrn.h $(IINC)/pupans.h $(IINC)/fieldtp.h $(IINC)/deftr.h 
  41.     $(IINC)/totdecl.h fdclsrt.h
  42. sort :  $(SRCOBS) ../trans/cmpftn.$(O)
  43. echo --  generating $@
  44. - $(RM) $@ 
  45. # here we need to do very awful activity 
  46. $(LD) $(SRCOBS) ../trans/cmpftn.$(O) $(LIB)/xmem.$(O) $(LIB)/sql_decl.$(O) -o $@ 
  47. # the following line should be used instead but it's impossible because of name conflicts
  48. # $(LD) $(SRCOBS) $(SRLIBS) -o $@ 
  49. clean::
  50. - $(RM) sort
  51. cmpkey.$(O)   : cmpkey.c   $(SRT_H_DEPS)
  52. extsrt.$(O)   : extsrt.c   $(SRT_H_DEPS)
  53. push.$(O)     : push.c     $(SRT_H_DEPS) 
  54. puts.$(O)     : puts.c     $(SRT_H_DEPS) 
  55. quicksor.$(O) : quicksor.c $(SRT_H_DEPS) 
  56. rkfrm.$(O)    : rkfrm.c    $(SRT_H_DEPS)
  57. sort.$(O)     : sort.c     $(SRT_H_DEPS)
  58. srtipc.$(O)   : srtipc.c   $(SRT_H_DEPS) $(IINC)/inpop.h $(IINC)/strml.h
  59. tidsrt.$(O)   : tidsrt.c   $(SRT_H_DEPS)