Makefile 426 B

123456789101112131415161718192021222324252627
  1. ##
  2. # Toplevel Makefile MSP40 hardware UART
  3. #
  4. # Stefan Wendler, sw@kaltpost.de
  5. ##
  6. BASEDIR = .
  7. SRCDIR = src
  8. TMPDIR = /tmp
  9. VERSION = 0.1
  10. TARGET = msp430_harduart_v$(VERSION)
  11. all: target
  12. target:
  13. make -C $(SRCDIR)
  14. style:
  15. cd $(SRCDIR) && make style
  16. check:
  17. make -C $(SRCDIR) check
  18. flash-target: target
  19. mspdebug rf2500 "prog ./bin/firmware.elf"
  20. clean:
  21. make -C $(SRCDIR) clean
  22. rm -fr doc/gen
  23. rm -f bin/firmware.*