Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 1.22 KB | None | 0 0
  1. Automatically-generated file. Do not edit!
  2. ################################################################################
  3.  
  4. -include ../makefile.init
  5.  
  6. RM := rm
  7.  
  8. # All of the sources participating in the build are defined here
  9. -include sources.mk
  10. -include subdir.mk
  11. -include objects.mk
  12.  
  13. ifneq ($(MAKECMDGOALS),clean)
  14. ifneq ($(strip $(C++_DEPS)),)
  15. -include $(C++_DEPS)
  16. endif
  17. ifneq ($(strip $(C_DEPS)),)
  18. -include $(C_DEPS)
  19. endif
  20. ifneq ($(strip $(CC_DEPS)),)
  21. -include $(CC_DEPS)
  22. endif
  23. ifneq ($(strip $(CPP_DEPS)),)
  24. -include $(CPP_DEPS)
  25. endif
  26. ifneq ($(strip $(CXX_DEPS)),)
  27. -include $(CXX_DEPS)
  28. endif
  29. ifneq ($(strip $(C_UPPER_DEPS)),)
  30. -include $(C_UPPER_DEPS)
  31. endif
  32. endif
  33.  
  34. -include ../makefile.defs
  35.  
  36. # Add inputs and outputs from these tool invocations to the build variables
  37.  
  38. # All Target
  39. all:
  40.  
  41. # Tool invocations
  42. : $(OBJS) $(USER_OBJS)
  43.     @echo 'Building target: $@'
  44.     @echo 'Invoking: GCC C++ Linker'
  45.     g++  -o $(OBJS) $(USER_OBJS) $(LIBS)
  46.     @echo 'Finished building target: $@'
  47.     @echo ' '
  48.  
  49. # Other Targets
  50. clean:
  51.     -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(CPP_DEPS)$(EXECUTABLES)$(CXX_DEPS)$(C_UPPER_DEPS)
  52.     -@echo ' '
  53.  
  54. .PHONY: all clean dependents
  55. .SECONDARY:
  56.  
  57. -include ../makefile.targets
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement