My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #
  2. # Copyright (c) 2011 Arduino. All right reserved.
  3. #
  4. # This library is free software; you can redistribute it and/or
  5. # modify it under the terms of the GNU Lesser General Public
  6. # License as published by the Free Software Foundation; either
  7. # version 2.1 of the License, or (at your option) any later version.
  8. #
  9. # This library is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  12. # See the GNU Lesser General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU Lesser General Public
  15. # License along with this library; if not, write to the Free Software
  16. # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  17. #
  18. SUBMAKE_OPTIONS=--no-builtin-rules --no-builtin-variables --no-print-directory
  19. #-------------------------------------------------------------------------------
  20. # Rules
  21. #-------------------------------------------------------------------------------
  22. all: arduino_due_x
  23. .PHONY: arduino_due_x
  24. arduino_due_x:
  25. @echo ------------------------------------------------------------------------------------
  26. @echo --- Making variant arduino_due_x
  27. @$(MAKE) DEBUG=1 $(SUBMAKE_OPTIONS) -f libvariant_arduino_due_x.mk
  28. # @$(MAKE) $(SUBMAKE_OPTIONS) -f libvariant_arduino_due_x.mk
  29. @echo ------------------------------------------------------------------------------------
  30. .PHONY: clean
  31. clean:
  32. @echo ------------------------------------------------------------------------------------
  33. @echo --- Cleaning variant arduino_due_x
  34. @$(MAKE) DEBUG=1 $(SUBMAKE_OPTIONS) -f libvariant_arduino_due_x.mk $@
  35. # @$(MAKE) $(SUBMAKE_OPTIONS) -f libvariant_arduino_due_x.mk $@
  36. @echo ------------------------------------------------------------------------------------