Makefile 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. include ../Makefile.inc
  34. ifeq (${OPENAIS_COMPAT}, SOLARIS)
  35. override LDFLAGS += -lnsl -lsocket -lrt
  36. endif
  37. LIBRARIES= ../lib/libevs.a ../lib/libcpg.a ../lib/libcfg.a ../lib/libconfdb.a
  38. LIBS = $(LIBRARIES)
  39. BINARIES= testevs evsbench testcpg testcpg2 cpgbench testconfdb
  40. #override CFLAGS += -I../include
  41. override LDFLAGS += -L../lib
  42. EXTRA_CFLAGS = -I$(srcdir)include
  43. TEST_SRC = sa_error.c logsys_s1.c logsys_s2.c logsys_s.c logsys_t1.c logsys_t2.c
  44. all: $(BINARIES)
  45. testtimer: testtimer.o $(LIBRARIES)
  46. $(CC) $(LDFLAGS) -o testtimer testtimer.o ../exec/timer.o
  47. testevs: testevs.o $(LIBS)
  48. $(CC) $(LDFLAGS) -o testevs testevs.o $(LIBS)
  49. testevsth: testevsth.o $(LIBS)
  50. $(CC) $(LDFLAGS) -o testevsth testevsth.o $(LIBS)
  51. evsbench: evsbench.o $(LIBS)
  52. $(CC) $(LDFLAGS) -o evsbench evsbench.o $(LIBS)
  53. testcpg: testcpg.o $(LIBRARIES)
  54. $(CC) $(LDFLAGS) -o testcpg testcpg.o $(LIBS)
  55. testcpg2: testcpg2.o $(LIBRARIES)
  56. $(CC) $(LDFLAGS) -o testcpg2 testcpg2.o $(LIBS)
  57. cpgbench: cpgbench.o $(LIBRARIES)
  58. $(CC) $(LDFLAGS) -o cpgbench cpgbench.o $(LIBS)
  59. testconfdb: testconfdb.o $(LIBRARIES)
  60. $(CC) $(LDFLAGS) -o testconfdb testconfdb.o $(LIBS) -rdynamic
  61. logsys_s: logsys_s.o logsys_s1.o logsys_s2.o ../exec/liblogsys.a
  62. $(CC) -o logsys_s logsys_s.o logsys_s1.o logsys_s2.o ../exec/liblogsys.a $(LDFLAGS)
  63. logsys_t1: logsys_t1.o ../exec/liblogsys.a
  64. $(CC) -o logsys_t1 logsys_t1.o ../exec/liblogsys.a $(LDFLAGS)
  65. logsys_t2: logsys_t2.o ../exec/liblogsys.a
  66. $(CC) -o logsys_t2 logsys_t2.o ../exec/liblogsys.a $(LDFLAGS)
  67. clean:
  68. rm -f *.o $(LIBRARIES) $(BINARIES)
  69. %.o: %.c
  70. $(CC) $(CFLAGS) $(CPPFLAGS) $(EXTRA_CFLAGS) -c -o $@ $<
  71. depend:
  72. makedepend -Y -- $(CFLAGS) $(CPPFLAGS) $(TEST_SRC) > /dev/null 2>&1