tmp cli renamed

This commit is contained in:
Tristan Krause 2019-05-23 12:55:56 +02:00
parent 16b1e101ad
commit 90e62b739b
3 changed files with 4 additions and 4 deletions

View file

@ -8,7 +8,7 @@ Die Projekt-Dokumentation befindet sich unter [github pages](https://devfix.gith
- [ ] Monitor: Refresh visualisieren, z.B. - / - \ |
- [ ] Main Menu: Informationen ergänzen
- [X] Selbsttest bei discard richtig beenden (momentan wird wahrscheinlich WDT angeschmissen, besser global bool für selbsttest-loop)
- [ ] Lizenz
- [x] Lizenz
- [x] gitignore checken
- [x] readme schreiben
- [ ] CLI: Farbe?

BIN
control/bin/b15fcli Executable file

Binary file not shown.

View file

@ -18,7 +18,7 @@ PATH_TMP_LIB = ../lib/
# outputs
OUT_TMP_DRV = $(PATH_TMP_LIB)/libb15fdrv.so
OUT_TMP_CLI = $(PATH_TMP_BIN)/cli.elf
OUT_TMP_CLI = $(PATH_TMP_BIN)/b15fcli
OUT_TMP_PLOTTY = $(PATH_TMP_BIN)/plotty
OUT_DRV = $(PATH_LIB)/libb15fdrv.so
OUT_CLI = $(PATH_BIN)/b15fcli
@ -61,9 +61,9 @@ install:
cp $(OUT_TMP_PLOTTY) $(OUT_PLOTTY)
cp drv/*.h $(PATH_INCLUDE)
uninstall: clean
uninstall:
@echo "Uninstalling driver..."
rm -rf $(PATH_INCLUDE) $(OUT_DRV) $(OUT_CLI) $(OUT_PLOTTY)
rm -rf $(OUT_DRV) $(OUT_CLI) $(OUT_PLOTTY) $(PATH_INCLUDE)
help:
@echo "This Makefile compiles the b15f driver lib and command line interface (CLI):"