Makefile 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. # Copyright (c) 2002-2004 MontaVista Software, Inc.
  2. # Copyright (c) 2006-2008 Red Hat, Inc.
  3. #
  4. # All rights reserved.
  5. #
  6. # This software licensed under BSD license, the text of which follows:
  7. #
  8. # Redistribution and use in source and binary forms, with or without
  9. # modification, are permitted provided that the following conditions are met:
  10. #
  11. # - Redistributions of source code must retain the above copyright notice,
  12. # this list of conditions and the following disclaimer.
  13. # - Redistributions in binary form must reproduce the above copyright notice,
  14. # this list of conditions and the following disclaimer in the documentation
  15. # and/or other materials provided with the distribution.
  16. # - Neither the name of the MontaVista Software, Inc. nor the names of its
  17. # contributors may be used to endorse or promote products derived from this
  18. # software without specific prior written permission.
  19. #
  20. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  21. # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  22. # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  23. # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  24. # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  25. # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  26. # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  27. # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  28. # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  29. # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  30. # THE POSSIBILITY OF SUCH DAMAGE.
  31. # Include configuration
  32. #
  33. srcdir ?= $(CURDIR)/../
  34. subdir ?= test/
  35. include $(srcdir)Makefile.inc
  36. override LDFLAGS += -L./ ${DYFLAGS}
  37. ifeq (${COROSYNC_COMPAT}, SOLARIS)
  38. override LDFLAGS += -lnsl -lsocket -lrt
  39. endif
  40. LIBRARIES= ../lib/libevs.a ../lib/libcpg.a ../lib/libcfg.a ../lib/libconfdb.a ../lib/libquorum.a
  41. LIBS = $(LIBRARIES)
  42. BINARIES= testevs evsbench evsverify testcpg testcpg2 cpgbench testconfdb logsysbench logsysrec testquorum
  43. override CFLAGS += -I../include
  44. override LDFLAGS += -L../lib
  45. EXTRA_CFLAGS = -I$(srcdir)include
  46. TEST_SRC = sa_error.c logsys_s1.c logsys_s2.c logsys_s.c logsys_t1.c logsys_t2.c
  47. all: $(BINARIES)
  48. testtimer: testtimer.o $(LIBRARIES)
  49. $(CC) $(LDFLAGS) -o testtimer testtimer.o ../exec/timer.o
  50. testevs: testevs.o $(LIBS)
  51. $(CC) $(LDFLAGS) -o testevs testevs.o $(LIBS)
  52. testevsth: testevsth.o $(LIBS)
  53. $(CC) $(LDFLAGS) -o testevsth testevsth.o $(LIBS)
  54. evsbench: evsbench.o $(LIBS)
  55. $(CC) $(LDFLAGS) -o evsbench evsbench.o $(LIBS)
  56. evsverify: evsverify.o $(LIBS) ../exec/crypto.o
  57. $(CC) $(LDFLAGS) -o evsverify evsverify.o $(LIBS) ../exec/crypto.o
  58. testcpg: testcpg.o $(LIBRARIES)
  59. $(CC) $(LDFLAGS) -o testcpg testcpg.o $(LIBS)
  60. testcpg2: testcpg2.o $(LIBRARIES)
  61. $(CC) $(LDFLAGS) -o testcpg2 testcpg2.o $(LIBS)
  62. testquorum: testquorum.o $(LIBRARIES)
  63. $(CC) $(LDFLAGS) -o testquorum testquorum.o $(LIBS)
  64. cpgbench: cpgbench.o $(LIBRARIES)
  65. $(CC) $(LDFLAGS) -o cpgbench cpgbench.o $(LIBS)
  66. testconfdb: testconfdb.o $(LIBRARIES)
  67. $(CC) $(LDFLAGS) -o testconfdb testconfdb.o $(LIBS) -rdynamic
  68. logsysbench: logsysbench.o ../exec/liblogsys.a
  69. $(CC) -o logsysbench logsysbench.o ../exec/liblogsys.a $(LDFLAGS)
  70. logsysrec: logsysrec.o ../exec/liblogsys.a
  71. $(CC) -o logsysrec logsysrec.o ../exec/liblogsys.a $(LDFLAGS)
  72. testquorum1: testquorum1.o $(LIBRARIES)
  73. $(CC) $(LDFLAGS) -o testquorum1 testquorum1.o $(LIBS)
  74. testquorum2: testquorum2.o $(LIBRARIES)
  75. $(CC) $(LDFLAGS) -o testquorum2 testquorum2.o $(LIBS)
  76. logsys_s: logsys_s.o logsys_s1.o logsys_s2.o ../exec/liblogsys.a
  77. $(CC) -o logsys_s logsys_s.o logsys_s1.o logsys_s2.o ../exec/liblogsys.a $(LDFLAGS)
  78. logsys_t1: logsys_t1.o ../exec/liblogsys.a
  79. $(CC) -o logsys_t1 logsys_t1.o ../exec/liblogsys.a $(LDFLAGS)
  80. logsys_t2: logsys_t2.o ../exec/liblogsys.a
  81. $(CC) -o logsys_t2 logsys_t2.o ../exec/liblogsys.a $(LDFLAGS)
  82. clean:
  83. rm -f *.o $(LIBRARIES) $(BINARIES)
  84. %.o: %.c
  85. $(CC) $(CFLAGS) $(CPPFLAGS) $(EXTRA_CFLAGS) -c -o $@ $<
  86. depend:
  87. makedepend -Y -- $(CFLAGS) $(CPPFLAGS) $(TEST_SRC) > /dev/null 2>&1