pacsea 0.6.2

A fast, friendly TUI for browsing and installing Arch and AUR packages with built-in news and security scanning
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Wrapper Makefile - delegates to dev/Makefile
# This allows running 'make' from the project root

.PHONY: help


.DEFAULT_GOAL := help


# Delegate all targets to dev/Makefile
%:
	@$(MAKE) -C dev $@


help:
	@echo "This Makefile delegates to dev/Makefile"

	@echo "Run 'make -C dev help' or see dev/Makefile for available targets"

	@echo ""

	@$(MAKE) -C dev help