makefile 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. ################################################################################
  2. # Automatically-generated file. Do not edit!
  3. ################################################################################
  4. -include ../makefile.init
  5. RM := rm -rf
  6. # All of the sources participating in the build are defined here
  7. -include sources.mk
  8. -include Sers/ServiceStation/subdir.mk
  9. -include Sers/Gateway/subdir.mk
  10. -include Sers/Core/Util/Threading/subdir.mk
  11. -include Sers/Core/Util/ConfigurationManager/subdir.mk
  12. -include Sers/Core/Module/json/cJSON/subdir.mk
  13. -include Sers/Core/Module/http/mongoose/subdir.mk
  14. -include Sers/Core/Module/Log/subdir.mk
  15. -include Sers/Core/Module/App/subdir.mk
  16. -include Sers/Core/Module/Api/subdir.mk
  17. -include subdir.mk
  18. -include objects.mk
  19. ifneq ($(MAKECMDGOALS),clean)
  20. ifneq ($(strip $(CC_DEPS)),)
  21. -include $(CC_DEPS)
  22. endif
  23. ifneq ($(strip $(C++_DEPS)),)
  24. -include $(C++_DEPS)
  25. endif
  26. ifneq ($(strip $(C_UPPER_DEPS)),)
  27. -include $(C_UPPER_DEPS)
  28. endif
  29. ifneq ($(strip $(CXX_DEPS)),)
  30. -include $(CXX_DEPS)
  31. endif
  32. ifneq ($(strip $(CPP_DEPS)),)
  33. -include $(CPP_DEPS)
  34. endif
  35. ifneq ($(strip $(C_DEPS)),)
  36. -include $(C_DEPS)
  37. endif
  38. endif
  39. -include ../makefile.defs
  40. # Add inputs and outputs from these tool invocations to the build variables
  41. # All Target
  42. all: Gateway
  43. # Tool invocations
  44. Gateway: $(OBJS) $(USER_OBJS)
  45. @echo 'Building target: $@'
  46. @echo 'Invoking: GCC C++ Linker'
  47. g++ -Lcrypto -o "Gateway" $(OBJS) $(USER_OBJS) $(LIBS)
  48. @echo 'Finished building target: $@'
  49. @echo ' '
  50. # Other Targets
  51. clean:
  52. -$(RM) $(CC_DEPS)$(C++_DEPS)$(EXECUTABLES)$(C_UPPER_DEPS)$(CXX_DEPS)$(OBJS)$(CPP_DEPS)$(C_DEPS) Gateway
  53. -@echo ' '
  54. .PHONY: all clean dependents
  55. -include ../makefile.targets