Makefile 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. # Copyright (c) 2002-2004 MontaVista Software, Inc.
  2. #
  3. # All rights reserved.
  4. #
  5. # This software licensed under BSD license, the text of which follows:
  6. #
  7. # Redistribution and use in source and binary forms, with or without
  8. # modification, are permitted provided that the following conditions are met:
  9. #
  10. # - Redistributions of source code must retain the above copyright notice,
  11. # this list of conditions and the following disclaimer.
  12. # - Redistributions in binary form must reproduce the above copyright notice,
  13. # this list of conditions and the following disclaimer in the documentation
  14. # and/or other materials provided with the distribution.
  15. # - Neither the name of the MontaVista Software, Inc. nor the names of its
  16. # contributors may be used to endorse or promote products derived from this
  17. # software without specific prior written permission.
  18. #
  19. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  20. # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  21. # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  22. # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  23. # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  24. # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  25. # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  26. # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  27. # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  28. # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  29. # THE POSSIBILITY OF SUCH DAMAGE.
  30. # Production mode flags
  31. #CFLAGS = -c -O3 -Wall -I../include
  32. #LDFLAGS = -L../lib
  33. #LIBS = ../lib/libais.a -lpthread
  34. # Debug mode flags
  35. CFLAGS = -c -g -Wall -DDEBUG -I../include
  36. LDFLAGS = -g -L../lib
  37. LIBS = ../lib/libais.a -lpthread
  38. # Profile mode flags
  39. #CFLAGS = -c -O3 -pg -DDEBUG -I../include
  40. #LDFLAGS = -pg -L../lib
  41. #LIBS = ../lib/libais.a
  42. EXTRA_CFLAGS = -I../include
  43. TEST_SRC = testclm.c testamf.c testamf1.c testamf2.c testamf3.c \
  44. testamf4.c testamf5.c testamf6.c testamfth.c \
  45. testckpt.c ckptstress.c testparse.c ckptbench.c \
  46. ckptbenchth.c testevt.c
  47. all: testclm testamf testamf1 testamf2 testamf3 testamf4 testamf5 testamf6 testamfth testckpt ckptstress testparse ckptbench ckptbenchth testevt
  48. testparse: testparse.o
  49. $(CC) $(LDFLAGS) -o testparse testparse.o ../exec/parse.o ../exec/print.o ../exec/mempool.o
  50. testtimer: testtimer.o
  51. $(CC) $(LDFLAGS) -o testtimer testtimer.o ../exec/timer.o
  52. testamf: testamf.o
  53. $(CC) $(LDFLAGS) -o testamf testamf.o $(LIBS)
  54. testamf1: testamf1.o
  55. $(CC) $(LDFLAGS) -o testamf1 testamf1.o $(LIBS)
  56. testamf2: testamf2.o
  57. $(CC) $(LDFLAGS) -o testamf2 testamf2.o $(LIBS)
  58. testamf3: testamf3.o
  59. $(CC) $(LDFLAGS) -o testamf3 testamf3.o $(LIBS)
  60. testamf4: testamf4.o
  61. $(CC) $(LDFLAGS) -o testamf4 testamf4.o $(LIBS)
  62. testamf5: testamf5.o
  63. $(CC) $(LDFLAGS) -o testamf5 testamf5.o $(LIBS)
  64. testamf6: testamf6.o
  65. $(CC) $(LDFLAGS) -o testamf6 testamf6.o $(LIBS)
  66. testamfth: testamfth.o
  67. $(CC) $(LDFLAGS) -o testamfth testamfth.o $(LIBS)
  68. testevt: testevt.o
  69. $(CC) $(LDFLAGS) -o testevt testevt.o $(LIBS)
  70. testclm: testclm.o
  71. $(CC) $(LDFLAGS) -o testclm testclm.o $(LIBS)
  72. testckpt: testckpt.o
  73. $(CC) $(LDFLAGS) -o testckpt testckpt.o $(LIBS)
  74. ckptbench: ckptbench.o
  75. $(CC) $(LDFLAGS) -o ckptbench ckptbench.o $(LIBS)
  76. ckptbenchth: ckptbenchth.o
  77. $(CC) $(LDFLAGS) -o ckptbenchth ckptbenchth.o $(LIBS)
  78. ckptstress: ckptstress.o
  79. $(CC) $(LDFLAGS) -o ckptstress ckptstress.o $(LIBS)
  80. clean:
  81. rm -f *.o testclm testamf testamf1 testamf2 testamf3 testamf4 testamf5 testamf6 testamfth testckpt ckptstress testparse testtimer ckptbench ckptbenchth testevt
  82. %.o: %.c
  83. $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $<
  84. depend:
  85. makedepend -Y -- $(CFLAGS) $(TEST_SRC) > /dev/null 2>&1
  86. # DO NOT DELETE
  87. testclm.o: ../include/ais_types.h ../include/ais_clm.h
  88. testamf.o: ../include/ais_types.h ../include/ais_amf.h ../include/ais_msg.h
  89. testamf1.o: ../include/ais_types.h ../include/ais_amf.h
  90. testamf2.o: ../include/ais_types.h ../include/ais_amf.h
  91. testamf3.o: ../include/ais_types.h ../include/ais_amf.h
  92. testamf4.o: ../include/ais_types.h ../include/ais_amf.h
  93. testamf5.o: ../include/ais_types.h ../include/ais_amf.h
  94. testamf6.o: ../include/ais_types.h ../include/ais_amf.h
  95. testamfth.o: ../include/ais_types.h ../include/ais_amf.h ../include/ais_msg.h
  96. testckpt.o: ../include/ais_types.h ../include/ais_ckpt.h
  97. ckptstress.o: ../include/ais_types.h ../include/ais_ckpt.h
  98. testparse.o: ../include/ais_types.h ../exec/parse.h ../include/list.h
  99. testparse.o: ../exec/aispoll.h ../exec/print.h
  100. ckptbench.o: ../include/ais_types.h ../include/ais_ckpt.h
  101. ckptbenchth.o: ../include/ais_types.h ../include/ais_ckpt.h
  102. testevt.o: ../include/ais_types.h ../include/ais_evt.h