Makefile 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. all: testclm testamf testamf1 testamf2 testamf3 testamf4 testamf5 testamf6 testamfth testckpt ckptstress testparse
  44. testparse: testparse.o
  45. $(CC) $(LDFLAGS) -o testparse testparse.o ../exec/parse.o ../exec/print.o ../exec/mempool.o
  46. testtimer: testtimer.o
  47. $(CC) $(LDFLAGS) -o testtimer testtimer.o ../exec/timer.o
  48. testamf: testamf.o
  49. $(CC) $(LDFLAGS) -o testamf testamf.o $(LIBS)
  50. testamf1: testamf1.o
  51. $(CC) $(LDFLAGS) -o testamf1 testamf1.o $(LIBS)
  52. testamf2: testamf2.o
  53. $(CC) $(LDFLAGS) -o testamf2 testamf2.o $(LIBS)
  54. testamf3: testamf3.o
  55. $(CC) $(LDFLAGS) -o testamf3 testamf3.o $(LIBS)
  56. testamf4: testamf4.o
  57. $(CC) $(LDFLAGS) -o testamf4 testamf4.o $(LIBS)
  58. testamf5: testamf5.o
  59. $(CC) $(LDFLAGS) -o testamf5 testamf5.o $(LIBS)
  60. testamf6: testamf6.o
  61. $(CC) $(LDFLAGS) -o testamf6 testamf6.o $(LIBS)
  62. testamfth: testamfth.o
  63. $(CC) $(LDFLAGS) -o testamfth testamfth.o $(LIBS)
  64. testclm: testclm.o
  65. $(CC) $(LDFLAGS) -o testclm testclm.o $(LIBS)
  66. testckpt: testckpt.o
  67. $(CC) $(LDFLAGS) -o testckpt testckpt.o $(LIBS)
  68. ckptstress: ckptstress.o
  69. $(CC) $(LDFLAGS) -o ckptstress ckptstress.o $(LIBS)
  70. clean:
  71. rm -f *.o testclm testamf testamf1 testamf2 testamf3 testamf4 testamf5 testamf6 testamfth testckpt ckptstress testparse testtimer
  72. %.o: %.c
  73. $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $<