26 lines
604 B
Makefile
26 lines
604 B
Makefile
# Makefile
|
|
#
|
|
# Makefile for the Arduino AccelStepper project
|
|
#
|
|
# Author: Mike McCauley (mikem@airspayce.com)
|
|
# Copyright (C) 2010 Mike McCauley
|
|
# $Id: Makefile,v 1.4 2013/03/21 21:48:27 mikem Exp mikem $
|
|
|
|
PROJNAME = AccelStepper
|
|
# Dont forget to also change the version at the top of AccelStepper.h:
|
|
DISTFILE = $(PROJNAME)-1.38.zip
|
|
|
|
all: doxygen dist upload
|
|
|
|
doxygen:
|
|
doxygen project.cfg
|
|
|
|
ci:
|
|
(cd ..;ci -l `cat $(PROJNAME)/MANIFEST`)
|
|
|
|
dist:
|
|
(cd ..; zip $(PROJNAME)/$(DISTFILE) `cat $(PROJNAME)/MANIFEST`)
|
|
|
|
upload:
|
|
rsync -avz $(DISTFILE) doc/ www.airspayce.com:public_html/mikem/arduino/$(PROJNAME)
|