-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
27 lines (21 loc) · 703 Bytes
/
Makefile
File metadata and controls
27 lines (21 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# KaliBspwm Makefile
# Simplifica la instalación y mantenimiento del entorno
.PHONY: all install clean test help
help:
@echo "KaliBspwm - Comandos disponibles:"
@echo " make install - Iniciar instalación completa"
@echo " make clean - Limpiar archivos temporales y caché"
@echo " make test - Verificar scripts con ShellCheck"
all: install
install:
@echo "Iniciando instalador..."
@chmod +x install.sh
@./install.sh
clean:
@echo "Limpiando temporales..."
@rm -rf ~/github
@rm -f *.log *.bak
@echo "Limpieza completada."
test:
@echo "Ejecutando ShellCheck..."
@shellcheck install.sh lib/*.sh scripts/*.sh || echo "Advervencias encontradas (ignorando errores no críticos)"