Makefile.am
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:1k
源码类别:

网格计算

开发平台:

Java

  1. #
  2. # Copyright 2005 The Apache Software Foundation
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. #     http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. #
  16. @PRODUCT_MK@
  17. #AM_CPPFLAGS = -I$(top_srcdir)
  18. ACLOCAL_AMFLAGS = -I m4
  19. lib_LTLIBRARIES = libhdfs.la
  20. libhdfs_la_SOURCES = hdfs.c hdfsJniHelper.c hdfs.h
  21. #check_PROGRAMS = hdfs_test hdfs_read hdfs_write
  22. check_PROGRAMS = hdfs_test hdfs_read hdfs_write
  23. hdfs_test_SOURCES = hdfs_test.c hdfs.h
  24. hdfs_test_LDADD = ${libdir}/libhdfs.la 
  25. hdfs_read_SOURCES = hdfs_read.c
  26. hdfs_read_LDADD = ${libdir}/libhdfs.la 
  27. hdfs_write_SOURCES = hdfs_write.c
  28. hdfs_write_LDADD = ${libdir}/libhdfs.la 
  29. test: hdfs_test hdfs_read hdfs_write 
  30. ${LIBHDFS_SRC_DIR}/tests/test-libhdfs.sh
  31. # vim: sw=4: ts=4: noet