home *** CD-ROM | disk | FTP | other *** search
/ ftp.parl.clemson.edu / 2015-02-07.ftp.parl.clemson.edu.tar / ftp.parl.clemson.edu / pub / pvfs2 / orangefs-2.8.3-20110323.tar.gz / orangefs-2.8.3-20110323.tar / orangefs / test / io / description / module.mk.in < prev    next >
Text File  |  2006-09-13  |  1KB  |  62 lines

  1.  
  2. DIR := io/description
  3. DEBUG_IO_DESC_DIR := $(DIR)
  4.  
  5. DEBUG_IO_DESC_DIR_SRC := \
  6.     $(DIR)/debug1.c\
  7.     $(DIR)/debug2.c\
  8.     $(DIR)/debug3.c\
  9.     $(DIR)/debug4.c\
  10.     $(DIR)/debug5.c\
  11.     $(DIR)/debug6.c\
  12.     $(DIR)/debug7.c\
  13.     $(DIR)/debug8.c\
  14.     $(DIR)/debug9.c\
  15.     $(DIR)/debug10.c\
  16.     $(DIR)/debug11.c\
  17.     $(DIR)/debug12.c\
  18.     $(DIR)/debug13.c\
  19.     $(DIR)/debug14.c\
  20. # disabled, broken:
  21. #    $(DIR)/debug15.c\
  22. #    $(DIR)/debug16.c\
  23. #    $(DIR)/debug17.c\
  24. #    $(DIR)/debug18.c\
  25. #    $(DIR)/debug19.c\
  26. #    $(DIR)/debug20.c\
  27. #    $(DIR)/debug21.c\
  28. #    $(DIR)/debug_olap.c\
  29. #    $(DIR)/debug_commit.c
  30.  
  31. TEST_IO_DESC_DIR_SRC := \
  32.     $(DIR)/test-pack1.c\
  33.     $(DIR)/test-encode-basic.c\
  34.     $(DIR)/test-encode-complex-out.c\
  35.     $(DIR)/test-encode-complex-in.c\
  36.     $(DIR)/test-encode-twice-out.c\
  37.     $(DIR)/test-encode-twice-in.c\
  38.     $(DIR)/test-romio-noncontig-pattern.c\
  39.     $(DIR)/test-romio-noncontig-pattern2.c\
  40.     $(DIR)/test-romio-noncontig-pattern3.c\
  41.     $(DIR)/test-truncate.c \
  42.     $(DIR)/test-many-datafiles-import.c \
  43.     $(DIR)/test-zero-fill.c
  44. # disabled, broken:
  45. #    $(DIR)/test-req1.c\
  46.  
  47. #MISCSRC += $(DIR)/debug-main.c
  48.  
  49. TESTSRC += $(TEST_IO_DESC_DIR_SRC)
  50. TESTSRC += $(DEBUG_IO_DESC_DIR_SRC)
  51.  
  52. LOCALTESTS := $(patsubst %.c,%, $(DEBUG_IO_DESC_DIR_SRC))
  53. $(LOCALTESTS): %: %.o $(DEBUG_IO_DESC_DIR)/debug-main.o
  54.     $(Q) "  LD        $@"
  55.     $(E)$(LD) $< $(DEBUG_IO_DESC_DIR)/debug-main.o $(LDFLAGS) $(LIBS) -o $@
  56.  
  57. LOCALTESTS := $(patsubst %.c,%, $(TEST_IO_DESC_DIR_SRC))
  58. $(LOCALTESTS): %: %.o
  59.     $(Q) "  LD        $@"
  60.     $(E)$(LD) $< $(LDFLAGS) $(LIBS) -o $@
  61.  
  62.