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.

123456789101112131415161718192021
  1. JAVAC = javac
  2. CC = gcc
  3. TARGET = unix
  4. #TARGET = win
  5. all: java
  6. java: serialHelper
  7. $(JAVAC) *.java
  8. serialHelper:
  9. ifeq ($(TARGET),win)
  10. $(CC) -o serialHelper -D winHelper serialHelper.c
  11. else
  12. $(CC) -o serialHelper serialHelper.c
  13. endif
  14. clean:
  15. rm -f *.class
  16. rm -f serialHelper