Makefile 711 B

1234567891011121314151617181920212223
  1. #
  2. # .ino Example Updater
  3. #
  4. # works within ubuntu and min-gw (win7) environment
  5. CFLAGS = -g -Wall
  6. #CFLAGS = -O4 -Wall
  7. SRC = inoupdate.c
  8. OBJ = $(SRC:.c=.o)
  9. inoupdate: $(SRC)
  10. $(CC) -Wall -g $(LDFLAGS) $(SRC) -o inoupdate
  11. clean:
  12. -rm ./inoupdate
  13. ino: inoupdate
  14. find ../../sys/arduino/. -name "*.ino" -exec ./inoupdate page_buffer.ino "// U8g2 Contructor List (Picture Loop Page Buffer)" "// End of constructor list" {} \;
  15. find ../../sys/arduino/. -name "*.ino" -exec ./inoupdate frame_buffer.ino "// U8g2 Contructor List (Frame Buffer)" "// End of constructor list" {} \;
  16. find ../../sys/arduino/. -name "*.ino" -exec ./inoupdate u8x8.ino "// U8x8 Contructor List" "// End of constructor list" {} \;