makefile 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. #
  2. # Copyright (c) 2019 Stefan Strobel <stefan.strobel@shimatta.net>
  3. #
  4. # This Source Code Form is subject to the terms of the Mozilla Public
  5. # License, v. 2.0. If a copy of the MPL was not distributed with this
  6. # file, You can obtain one at https://mozilla.org/MPL/2.0/.
  7. #
  8. OBJ_DIR := output/
  9. CC := gcc
  10. CPP := g++
  11. LN := ln
  12. SOURCES := src/shellmatta.c \
  13. src/shellmatta_autocomplete.c \
  14. src/shellmatta_history.c \
  15. src/shellmatta_utils.c \
  16. src/shellmatta_escape.c \
  17. src/shellmatta_opt.c
  18. INCLUDES := api .
  19. UNITTEST_SOURCES := test/unittest/test_main.cpp \
  20. test/unittest/shellmatta_opt/test_opt_findNextHunk.cpp \
  21. test/unittest/shellmatta_utils/test_utils_writeEcho.cpp \
  22. test/unittest/shellmatta_utils/test_utils_shellItoa.cpp \
  23. test/unittest/shellmatta_utils/test_utils_saveCursorPos.cpp \
  24. test/unittest/shellmatta_utils/test_utils_restoreCursorPos.cpp \
  25. test/unittest/shellmatta_utils/test_utils_eraseLine.cpp \
  26. test/unittest/shellmatta_utils/test_utils_rewindCursor.cpp \
  27. test/unittest/shellmatta_utils/test_utils_forwardCursor.cpp \
  28. test/unittest/shellmatta_utils/test_utils_clearInput.cpp \
  29. test/unittest/shellmatta_utils/test_utils_insertChars.cpp \
  30. test/unittest/shellmatta_utils/test_utils_terminateInput.cpp \
  31. test/unittest/shellmatta_utils/test_utils_removeChars.cpp \
  32. test/unittest/shellmatta_autocomplete/test_autocomplete_run.cpp \
  33. test/unittest/shellmatta_escape/test_escape_processArrowKeys.cpp \
  34. test/unittest/shellmatta_history/test_appendHistoryByte.cpp \
  35. test/unittest/shellmatta/test_shellmatta_doInit.cpp
  36. INTEGRATIONTEST_SOURCES := test/integrationtest/test_main.cpp \
  37. test/integrationtest/test_integration.cpp \
  38. test/integrationtest/test_integration_opt.cpp \
  39. test/integrationtest/test_integration_optLong.cpp \
  40. test/integrationtest/test_integration_continue.cpp \
  41. test/integrationtest/test_integration_busy.cpp
  42. UNITTEST_CPPOBJ := $(patsubst %.cpp,$(OBJ_DIR)%.o,$(UNITTEST_SOURCES))
  43. INTEGRATIONTEST_CPPOBJ := $(patsubst %.cpp,$(OBJ_DIR)%.o,$(INTEGRATIONTEST_SOURCES))
  44. CFLAGS := $(INCLUDES:%=-I%) -g -Wall -Werror -Wextra -pedantic -DSHELLMATTA_HELP_ALIAS=\"?\"
  45. TESTFLAGS := $(INCLUDES:%=-I%) -g -Wall -Werror -Wextra -fprofile-arcs -ftest-coverage -pedantic
  46. TESTLFLAGS := -fprofile-arcs -Wl,--allow-multiple-definition
  47. DEPEND = -MT $@ -MF "$(@:%.o=%.d)" -MG -MM
  48. COBJ := $(patsubst %.c,$(OBJ_DIR)%.o,$(SOURCES))
  49. EXAMPLE_SOURCES := example/main.c
  50. EXAMPLE_COBJ := $(patsubst %.c,$(OBJ_DIR)%.o,$(EXAMPLE_SOURCES))
  51. EXAMPLE_TARGET := $(OBJ_DIR)example/example
  52. UNITTEST_TARGET := $(OBJ_DIR)test/unittest/unittest
  53. INTEGRATIONTEST_TARGET := $(OBJ_DIR)test/integrationtest/integrationtest
  54. OBJ := $(COBJ) $(EXAMPLE_COBJ) $(UNITTEST_CPPOBJ) $(INTEGRATIONTEST_CPPOBJ)
  55. DEPS := $(OBJ:%.o=%.d)
  56. export
  57. help:
  58. @echo Shellmatta help
  59. @echo -----------------------------------------------
  60. @echo test - run all tests
  61. @echo cppcheck - run static code analysis (cppcheck)
  62. @echo example - build example
  63. @echo -----------------------------------------------
  64. test: unittest integrationtest
  65. cppcheck:
  66. - @mkdir -p output/cppcheck/html
  67. cppcheck --enable=all --template=gcc --cppcheck-build-dir=output/cppcheck $(SOURCES)
  68. cppcheck --enable=all --template=gcc --cppcheck-build-dir=output/cppcheck $(SOURCES) --xml 2>output/cppcheck/cppcheck.xml
  69. cppcheck-htmlreport --file=output/cppcheck/cppcheck.xml --title="Shellmatta" --report-dir=output/cppcheck/html
  70. unittest: $(UNITTEST_TARGET)
  71. - @mkdir -p output/test/unittest/report
  72. @echo running test:
  73. @# remove coverage from former run
  74. @-find . -name "*.gcda" -type f -delete
  75. -$(UNITTEST_TARGET)
  76. @#gcov -o output/test/unittest $(UNITTEST_CPPOBJ) -r src
  77. @# remove report from former run
  78. -rm -rf $(OBJ_DIR)test/unittest/report/*
  79. gcovr --html-details --output $(OBJ_DIR)test/unittest/report/report.html output/test/unittest -f src -f api
  80. @#-rm *.gcov
  81. integrationtest: $(INTEGRATIONTEST_TARGET)
  82. - @mkdir -p output/test/integrationtest/report
  83. @echo running test:
  84. -$(INTEGRATIONTEST_TARGET)
  85. #gcov -o output/test $(TEST_CPPOBJ) -r
  86. gcovr --html-details --output $(OBJ_DIR)test/integrationtest/report/report.html output/src -f src -f api
  87. #-rm *.gcov
  88. example: $(EXAMPLE_TARGET)
  89. @echo building example
  90. doc:
  91. - @mkdir -p output/doc/html
  92. - @mkdir -p output/doc/latex
  93. doxygen cfg/doxygen/doxyfile
  94. clean:
  95. - rm -rf $(OBJ_DIR)
  96. $(EXAMPLE_TARGET): $(COBJ) $(EXAMPLE_COBJ)
  97. - @mkdir -p $(@D)
  98. $(CC) $(LFLAGS) $(LIB_PATH) -o $@ $^ $(LIBS)
  99. $(UNITTEST_TARGET): $(UNITTEST_CPPOBJ)
  100. - @mkdir -p $(@D)
  101. $(CPP) $(TESTLFLAGS) $(LIB_PATH) -o $@ $^ $(LIBS)
  102. $(INTEGRATIONTEST_TARGET): $(INTEGRATIONTEST_CPPOBJ) $(COBJ)
  103. - @mkdir -p $(@D)
  104. $(CPP) $(TESTLFLAGS) $(LIB_PATH) -o $@ $^ $(LIBS)
  105. $(TARGET): $(OBJ)
  106. - @mkdir -p $(@D)
  107. $(CC) $(LFLAGS) $(LIB_PATH) -o $@ $^ $(LIBS)
  108. $(COBJ):
  109. - @mkdir -p $(@D)
  110. @$(CC) -c $(CFLAGS) $(DEPEND) -o $@ $(subst $(OBJ_DIR), ,$(@:%.o=%.c))
  111. $(CC) -c $(CFLAGS) -o $@ $(subst $(OBJ_DIR), ,$(@:%.o=%.c))
  112. $(EXAMPLE_COBJ):
  113. - @mkdir -p $(@D)
  114. @$(CC) -c $(CFLAGS) $(DEPEND) -o $@ $(subst $(OBJ_DIR), ,$(@:%.o=%.c))
  115. $(CC) -c $(CFLAGS) -o $@ $(subst $(OBJ_DIR), ,$(@:%.o=%.c))
  116. $(UNITTEST_CPPOBJ) $(INTEGRATIONTEST_CPPOBJ):
  117. - @mkdir -p $(@D)
  118. @$(CPP) -c $(TESTFLAGS) $(DEPEND) -o $@ $(subst $(OBJ_DIR), ,$(@:%.o=%.cpp))
  119. $(CPP) -c $(TESTFLAGS) -o $@ $(subst $(OBJ_DIR), ,$(@:%.o=%.cpp))
  120. %.o: %.cpp
  121. - @mkdir -p $(@D)
  122. @$(CPP) -c $(CFLAGS) $(DEPEND) -o $@ $(subst $(OBJ_DIR), ,$(@:%.o=%.c))
  123. $(CPP) -c $(CFLAGS) -o $@ $<
  124. -include $(DEPS)