Makefile 705 B

1234567891011121314151617181920212223242526272829
  1. # Arduino Make file. Refer to https://github.com/sudar/Arduino-Makefile
  2. # # WARNING: Trailing whitespace will cause options to be read incorrectly.
  3. ## Makefile Setup
  4. ARDUINO_DIR = /Applications/Arduino.app/Contents/Java
  5. ARDMK_DIR = /usr/local/Cellar/arduino-mk/1.5.2
  6. # define board
  7. #ARCHITECTURE = avr
  8. #BOARD_TAG = atmega88_16
  9. BOARD_TAG = uno
  10. # Default user-defined libraries directory
  11. USER_LIB_PATH += libraries
  12. # Additional user-defined libraries may be added to this list
  13. ARDUINO_LIBS += \
  14. EEPROM \
  15. Wire \
  16. RTClib \
  17. LedControl \
  18. TM1618 \
  19. SparkFun_APDS9960 \
  20. APDS9960 \
  21. Adafruit_NeoPixel
  22. ### Do not touch - the path to Arduino.mk, inside the ARDMK_DIR
  23. include $(ARDMK_DIR)/Arduino.mk