edit make

This commit is contained in:
2025-11-12 16:12:48 +07:00
parent 619953e6cc
commit f251380639

View File

@@ -84,16 +84,16 @@ clean:
# Help
help:
@echo "Доступные цели:"
@echo " all - Скомпилировать FIFO программы"
@echo " fifo - Скомпилировать fifo_server и fifo_client"
@echo " test_files - Создать тестовые входные файлы"
@echo " test_fifo_server - Запустить FIFO сервер (использовать с клиентом в другом терминале)"
@echo " test_fifo_client - Запустить FIFO клиент и показать результат"
@echo " test_fifo_auto - Автоматический тест FIFO (сервер в фоне)"
@echo " test_all - Запустить все тесты (FIFO)"
@echo " test_error_fifo - Тест обработки ошибок (несуществующий файл)"
@echo " clean - Удалить скомпилированные файлы и тесты"
@echo "Available targets:"
@echo " all - Build FIFO programs"
@echo " fifo - Compile fifo_server and fifo_client"
@echo " test_files - Create test input files"
@echo " test_fifo_server - Run FIFO server (use client in another terminal)"
@echo " test_fifo_client - Run FIFO client and show results"
@echo " test_all - Automatic FIFO test (server in background)"
@echo " test_error - Error handling test (nonexistent file)"
@echo " clean - Remove built files and test files"
@echo " help - Show this help"
.PHONY: all fifo test_files test_fifo_server test_fifo_client test_all \
test_error clean help