2008-10-30 22:29:21 +01:00
|
|
|
ifndef TAG
|
|
|
|
ifndef RELEASE
|
|
|
|
${error You must specify the RELEASE variable (e.g. make RELEASE=2.2)}
|
|
|
|
endif
|
|
|
|
RELEASETAG=$(subst .,-,$(RELEASE))
|
|
|
|
TAG=contiki-$(RELEASETAG)
|
|
|
|
else
|
|
|
|
RELEASE=$(TAG)
|
2008-08-15 20:08:03 +02:00
|
|
|
endif
|
|
|
|
|
2008-10-30 22:29:21 +01:00
|
|
|
ifndef CVSUSER
|
|
|
|
CVSUSER=:pserver:anonymous
|
|
|
|
endif
|
|
|
|
|
|
|
|
CVSROOT=$(CVSUSER)@contiki.cvs.sourceforge.net:/cvsroot/contiki
|
|
|
|
|
2008-11-06 09:46:35 +01:00
|
|
|
package: all
|
2008-08-15 20:08:03 +02:00
|
|
|
|
2008-10-30 22:29:21 +01:00
|
|
|
test: export-package compile almost-clean
|
2008-08-15 20:08:03 +02:00
|
|
|
|
2008-11-06 09:46:35 +01:00
|
|
|
export-package: clean export copy tgz zip
|
2008-08-15 20:08:03 +02:00
|
|
|
|
|
|
|
almost-clean:
|
|
|
|
rm -rf contiki-2.x contiki-$(RELEASE) contiki-collect-$(RELEASE)
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -rf contiki-2.x contiki-$(RELEASE) contiki-collect-$(RELEASE) *.zip *.tar.gz
|
|
|
|
|
|
|
|
copy:
|
|
|
|
cp -r contiki-2.x contiki-$(RELEASE)
|
|
|
|
|
|
|
|
doc:
|
|
|
|
(cd contiki-2.x/doc; make dox pdf)
|
|
|
|
|
|
|
|
copydoc:
|
|
|
|
cp contiki-2.x/doc/latex/refman.pdf contiki-$(RELEASE)/doc/
|
|
|
|
cp -r contiki-2.x/doc/html contiki-$(RELEASE)/doc/
|
|
|
|
|
|
|
|
tgz:
|
|
|
|
tar czf contiki-$(RELEASE).tar.gz contiki-$(RELEASE)
|
|
|
|
chmod 644 contiki-$(RELEASE).tar.gz
|
|
|
|
|
|
|
|
zip:
|
|
|
|
zip -r contiki-$(RELEASE).zip contiki-$(RELEASE)
|
|
|
|
chmod 644 contiki-$(RELEASE).zip
|
|
|
|
|
|
|
|
compile:
|
|
|
|
(cd contiki-2.x/examples/compile-platforms; make)
|
|
|
|
|
|
|
|
checkout:
|
2008-10-30 22:29:21 +01:00
|
|
|
cvs -d $(CVSROOT) co -r $(TAG) contiki-2.x
|
2008-08-15 20:08:03 +02:00
|
|
|
|
|
|
|
export:
|
2008-10-30 22:29:21 +01:00
|
|
|
cvs -d $(CVSROOT) export -r $(TAG) contiki-2.x
|
2008-08-15 20:08:03 +02:00
|
|
|
|
2008-11-06 09:46:35 +01:00
|
|
|
-include Makefile.sky
|
|
|
|
-include Makefile.raven
|
|
|
|
|
|
|
|
all: export-package $(BINARIES) almost-clean
|