Makefile.cgi_sample.app
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:1k
源码类别:

生物技术

开发平台:

C/C++

  1. # $Id: Makefile.cgi_sample.app,v 1000.0 2003/10/29 18:45:24 gouriano Exp $
  2. # Build test CGI application "cgi_sample"
  3. #################################
  4. APP = cgi_sample.cgi
  5. SRC = cgi_sample
  6. # new_project.sh will copy everything in the following block to any
  7. # Makefile.*_app generated from this sample project.  Do not change
  8. # the lines reading "### BEGIN/END COPIED SETTINGS" in any way.
  9. ### BEGIN COPIED SETTINGS
  10. ## Use these two lines for normal CGI.
  11. LIB = xcgi xhtml xconnect xutil xncbi
  12. LIBS = $(NETWORK_LIBS) $(ORIG_LIBS)
  13. ## Use these two lines for FastCGI.  (No other changes needed!)
  14. # LIB = xfcgi xhtml xconnect xutil xncbi
  15. # LIBS = $(FASTCGI_LIBS) $(NETWORK_LIBS) $(ORIG_LIBS)
  16. ## If you need the C toolkit...
  17. # LIBS     = $(NCBI_C_LIBPATH) -lncbi $(NETWORK_LIBS) $(ORIG_LIBS)
  18. # CPPFLAGS = $(ORIG_CPPFLAGS) $(NCBI_C_INCLUDE)
  19. ### END COPIED SETTINGS