Simple single-color 8x8x8 LED Cube with AVRs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011121314151617 |
- JAVAC = javac
- CC = gcc
- TARGET = unix
- #TARGET = win
-
-
- all: java
-
- java: helper
- $(JAVAC) *.java
-
- helper:
- $(CC) -o serialHelper $(TARGET)Helper.c
-
- clean:
- rm -f *.class
- rm -f serialHelper
|