mirror of
https://github.com/hax4dazy/TinWoo.git
synced 2025-02-09 19:25:05 +01:00
17 lines
287 B
Makefile
17 lines
287 B
Makefile
ifeq ($(OS),Windows_NT)
|
|
MAKEPKG := makepkg
|
|
all: deps
|
|
else
|
|
ifeq (, $(shell which makepkg))
|
|
MAKEPKG := dkp-makepkg
|
|
else
|
|
MAKEPKG := makepkg
|
|
endif
|
|
endif
|
|
|
|
all:
|
|
@$(MAKEPKG) -c -C -f -i -s --noconfirm > /dev/null
|
|
|
|
deps:
|
|
@pacman -S --needed --noconfirm patch cmake > /dev/null
|