osd-contiki/examples/z1/sensys_scanner/.svn/text-base/Makefile.svn-base
2011-03-03 13:44:28 +01:00

26 lines
508 B
Makefile

DEFINES=PROJECT_CONF_H=\"project-conf.h\"
# Define the target platform
ifndef TARGET
TARGET=sky
endif
# Give a name to your project
CONTIKI = ../../../../contiki-2.x/
CONTIKI_PROJECT = rssi-scanner
# Compile project typing "make"
all: $(CONTIKI_PROJECT)
# Upload project typing "make upload"
upload: $(CONTIKI_PROJECT).upload
%.class: %.java
javac $(basename $<).java
viewrssi: ViewRSSI.class
make login | java ViewRSSI
# ContikiProjects: including the makefile
include ../../../Makefile.projects