From 61d7803cd8804535cd5547eea0c77ae79702dd07 Mon Sep 17 00:00:00 2001 From: Thomas Bernard Date: Fri, 25 Jan 2019 23:17:16 +0100 Subject: [PATCH] 3rdparty: comment the Makefile --- 3rdparty/Makefile | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/3rdparty/Makefile b/3rdparty/Makefile index d9e4c582..e5b4d677 100644 --- a/3rdparty/Makefile +++ b/3rdparty/Makefile @@ -1,3 +1,22 @@ +# (c) 2018-2019 Thomas BERNARD +# +# Makefile to build GrafX2 library dependencies. +# +# Variables : +# - API : sdl(default), sdl2 +# - WIN32CROSS +# +# most useful targets : +# - download : download .tar.gz files from the WWW +# - all (default) : download and build... +# - clean : remove built libraries +# - clean_archives : remove downloaded .tar.gz files +# +# examples : +# $ make WIN32CROSS=1 API=sdl2 +# $ make download +# $ make libtiff + API ?= sdl PLATFORM = $(shell uname) @@ -11,7 +30,7 @@ SDLDEVEL = SDL-devel-1.2.15-mingw32.tar.gz SDLDEVELURL = https://www.libsdl.org/release/$(SDLDEVEL) SDLDEVELPATCH = SDL-1.2.15.patch SDLIMAGE = SDL_image-1.2.12 -SDLIMAGEARCH = SDL_image-1.2.12.tar.gz +SDLIMAGEARCH = $(SDLIMAGE).tar.gz SDLIMAGEURL = https://www.libsdl.org/projects/SDL_image/release/$(SDLIMAGEARCH) SDLIMAGEPATCHES = SDL_image-1.2.12.XCF_infinite_loop.patch \ SDL_image-1.2.12.XCF_v11_64bits_offsets.patch \