niotso/update-libraries.mk
Andrew D'Addesio 227617b540 Moved to git
Assembla's decision to remove Trac incited us to ditch them entirely. Further, the repository no longer includes binaries or libraries; these can be downloaded from niotso.org/pub/ and updated with the included update-libraries script.
2012-10-17 03:21:00 -05:00

12 lines
No EOL
293 B
Makefile

LIBS = freetype libjpeg-turbo libmpg123 libpng libpq zlib
all: .PHONY ../_deps/$(LIBS)
.PHONY: $(LIBS)
wget -N http://niotso.org/pub/environment/windows/lib/$<.tar.xz
../_deps/%: %.tar.xz
ifdef CMD
del /F /S /Q "$@"
else
rm -rf "$@/*"
endif
xzdec $< | tar -x
echo . > "$@/temp"