PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

27 rindas
682B

  1. # Makefile
  2. #
  3. # Makefile for the Arduino VirtualWire project
  4. #
  5. # Author: Mike McCauley (mikem@airspayce.com)
  6. # Copyright (C) 2011 Mike McCauley
  7. # $Id: Makefile,v 1.1 2013/01/14 06:49:29 mikem Exp mikem $
  8. PROJNAME = VirtualWire
  9. # Dont forget to also change the version at the top of RF22.h:
  10. DISTFILE = $(PROJNAME)-1.15.zip
  11. all: doxygen dist upload
  12. doxygen:
  13. doxygen project.cfg
  14. ci:
  15. (cd ..;ci -l `cat $(PROJNAME)/MANIFEST`)
  16. dist:
  17. (cd ..; zip $(PROJNAME)/$(DISTFILE) `cat $(PROJNAME)/MANIFEST`)
  18. upload:
  19. rsync -avz $(DISTFILE) doc/ www.airspayce.com:public_html/mikem/arduino/$(PROJNAME)
  20. rsync -avz ../../doc/VirtualWire.pdf doc/ www.airspayce.com:public_html/mikem/arduino/