Advertisement
Guest User

Untitled

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