makefile 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 subdir.mk
  9. -include src/transport/subdir.mk
  10. -include src/test/subdir.mk
  11. -include src/service/subdir.mk
  12. -include src/codec/subdir.mk
  13. -include objects.mk
  14. ifneq ($(MAKECMDGOALS),clean)
  15. ifneq ($(strip $(C_DEPS)),)
  16. -include $(C_DEPS)
  17. endif
  18. endif
  19. -include ../makefile.defs
  20. # Add inputs and outputs from these tool invocations to the build variables
  21. # All Target
  22. all: OpenV2G.exe
  23. # Tool invocations
  24. OpenV2G.exe: $(OBJS) $(USER_OBJS)
  25. @echo 'Building target: $@'
  26. @echo 'Invoking: MinGW C Linker'
  27. gcc -o"OpenV2G.exe" $(OBJS) $(USER_OBJS) $(LIBS)
  28. @echo 'Finished building target: $@'
  29. @echo ' '
  30. # Other Targets
  31. clean:
  32. -$(RM) $(OBJS)$(C_DEPS)$(EXECUTABLES) OpenV2G.exe
  33. -@echo ' '
  34. .PHONY: all clean dependents
  35. .SECONDARY:
  36. -include ../makefile.targets