mirror of
https://github.com/simtactics/niotso.git
synced 2025-03-15 08:11:22 +00:00
13 lines
No EOL
327 B
Makefile
13 lines
No EOL
327 B
Makefile
LIBS = freetype libjpeg-turbo libmpg123 libpng libpq zlib
|
|
all: .PHONY $(addprefix ../_deps/, $(LIBS))
|
|
.PHONY: $(LIBS)
|
|
$(LIBS):
|
|
wget -N http://niotso.org/pub/environment/windows/lib/$@.tar.xz
|
|
../_deps/%: ../_deps/%.tar.xz
|
|
ifdef CMD
|
|
del /F /S /Q "$@"
|
|
else
|
|
rm -rf "$@/*"
|
|
endif
|
|
xzdec $< | tar -x
|
|
echo . > "$@/temp" |