mirror of
https://github.com/simtactics/niotso.git
synced 2025-03-15 16:21:21 +00:00
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.
12 lines
No EOL
293 B
Makefile
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" |