libraries / VirtualWire / Makefileon commit Added link to project report (97a3ba0)
   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
   9PROJNAME = VirtualWire
  10# Dont forget to also change the version at the top of RF22.h:
  11DISTFILE = $(PROJNAME)-1.15.zip
  12
  13all:    doxygen dist upload
  14
  15doxygen: 
  16        doxygen project.cfg
  17
  18ci:
  19        (cd ..;ci -l `cat $(PROJNAME)/MANIFEST`)
  20
  21dist:   
  22        (cd ..; zip $(PROJNAME)/$(DISTFILE) `cat $(PROJNAME)/MANIFEST`)
  23
  24upload:
  25        rsync -avz $(DISTFILE) doc/ www.airspayce.com:public_html/mikem/arduino/$(PROJNAME)
  26        rsync -avz ../../doc/VirtualWire.pdf doc/ www.airspayce.com:public_html/mikem/arduino/