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.

makefile 187B

1234567891011121314151617
  1. JAVAC = javac
  2. CC = gcc
  3. TARGET = unix
  4. #TARGET = win
  5. all: java
  6. java: helper
  7. $(JAVAC) *.java
  8. helper:
  9. $(CC) -o serialHelper $(TARGET)Helper.c
  10. clean:
  11. rm -f *.class
  12. rm -f serialHelper