summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/rltiles/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Fix ontoclasm's "tile offset thing" when rebuilding with resized source PNGsSamuel Bronson2013-04-211-0/+5
| | | | | | | | | | | | This is probably not the usual cause of such problems in WebTiles, though: * This doesn't usually happen on servers except when manually-triggered rebuilds result in the same branch being built twice in a row AND a PNG has been resized. * This problem won't go away on reloading the page, since the coordinates won't be up-to-date in *any* file.
* Clean rltiles/tiledef-unrand.cc in the right Makefile.Samuel Bronson2013-04-041-1/+1
|
* Remove deprecated preprocessor optionsArien Malec2013-04-041-1/+1
|
* Fix a message in the rltiles Makefile.Samuel Bronson2013-03-101-1/+1
|
* improved build of rltiles for androidChris West2013-01-051-0/+6
|
* Show tiles in Ability menu, using dd's ability tiles (#6054).Steve Melenchuk2012-08-111-1/+1
| | | | | This also adds redone backgrounds for equipped (and cursed equipped) items to match the recently added new item slot background.
* Allow specification of only one of image or code handling in tilegen.Steve Melenchuk2012-08-041-3/+6
| | | | | | | | This allows the image and the code to be built independently; thus their dependencies can be (and now are) checked separately, preventing code from being rebuilt when only tile images have been updated (as opposed to the dc-*.txt definitions of the images, which are a dependency for both the image ant the code).
* Simplify the rltiles makefile by removing a per-target file.Adam Borowski2012-05-221-5/+0
| | | | This fixes incomplete cleans, etc.
* Do not include system headers in rltiles .d files.Neil Moore2012-05-051-1/+1
|
* Depend on %included tile sheets.Adam Borowski2012-01-041-0/+4
| | | | | If you changed, for example, just dc-item.txt, it resulted in a misbuild since headers were out of sync (dc-main.txt %includes dc-item.txt).
* Properly clean up after rltile build.Adam Borowski2011-12-271-1/+2
|
* Enable and fix warnings in rltiles.Adam Borowski2011-12-141-1/+1
|
* Allow running the rltile tool with no #define USE_TILE.Adam Borowski2011-12-141-20/+29
| | | | | | | In this case, it will produce enums but no images, avoiding a dependency on SDL. Since production of images is very deeply intertwined with rest of processing, this change is a nasty hack all around, having it process 0x0 dummy images all over. Doesn't seem to explode, though.
* tilegen: MSVCRT's tmpfile() is broken; use our own instead.Samuel Bronson2011-10-141-0/+6
|
* Add DEBUG=y support to rltiles/Makefile.Samuel Bronson2011-10-131-0/+4
|
* Do the "CFLAGS difference check" dance for rltiles/tool/tilegen, too.Samuel Bronson2011-10-131-4/+17
| | | | | It seems like this was the only Makefile in the whole tree that didn't check for changes in CFLAGS between runs.
* Fix mac rltiles build, accounting for cross-compilationAaron Becker2011-09-041-1/+1
|
* Rename CXX in rltiles to HOSTCXX. Breaks Mac autobuilds :(Adam Borowski2011-09-031-5/+5
| | | | | | | | greatzebu's scripts and his change in cc3e1d6d relied on host and target being the same, which is true only for native builds. When passing CXX from the outside you need to specify which one you mean. After this commit, you can override them separately.
* Makefile changes to facilitate correctly formatted mac nightly buildsAaron Becker2011-09-021-1/+1
|
* Add js file generation to the makefile.Florian Diebold2011-06-261-3/+4
|
* Comment that cross-compilation with contribs for host is not supported.Adam Borowski2011-06-231-0/+6
| | | | | With per-arch contrib builds, this could be implemented by building SDL, SDL-image and libpng twice, but that'd need work.
* Install built contribs to per-arch directories.Adam Borowski2011-06-021-12/+8
| | | | | | | | This fixes compilation errors when compiling for a different architecture without a manual "clean-contrib", will make it possible to fix failures due to libpng and sdl-image (which need to be available both for host (tile data) and for target (the game itself)), and may allow reducing unnecessary recompilations if we cease to pass flags to contribs.
* Make rltiles use contrib SDL and png if CONTRIB_SDL and NO_PKGCONFIG are set.Darshan Shaligram2011-01-011-0/+10
| | | | | | The Mac tiles build can trip over MacPorts SDL and libpng being incompatible versions and compiled for the wrong architecture, so allow the user to force use of contrib SDL and libpng.
* Split icons out from main.png. Fixes #2981.Johanna Ploog2010-12-161-1/+1
| | | | This should also allow us to draw clouds beneath monsters.
* rltiles: fix build on Mac OS X x86_64Steven Noonan2010-07-141-2/+2
| | | | Signed-off-by: Steven Noonan <steven@uplinklabs.net>
* Split dngn tile page into feat/floor/wall.Enne Walker2010-05-301-1/+1
| | | | | | Due to the set of coloured floors and walls, it was getting perilously large. The tiledef-dngn.h file now just indirectly calls the correct feat/floor/wall functions depending on which tile index is used.
* rltiles/Makefile: use sdl-config instead of pkg-configSteven Noonan2010-05-121-2/+2
| | | | | | | | | | On Mac OS X, pkg-config gave a very odd result for --libs, which included both the static _and_ shared SDL libs. This resulted in numerous multiply defined symbols. The program warned that it would use either the locally defined symbol or the shared library one, but which one was at best a random choice. This could cause very unpredictable runtime behaviour. Signed-off-by: Steven Noonan <steven@uplinklabs.net>
* Makefiles: fix GCC existence check on broken 'which' implementationsSteven Noonan2010-05-021-1/+1
| | | | | | | | | | | Some 'which' implementations print errors to stdout instead of stderr, which can give false positives. Fix this by redirecting all output of 'which' to /dev/null, and checking the return value instead. Thanks to JoachimSchipper on Mantis for this suggestion (Issue #926). Signed-off-by: Steven Noonan <steven@uplinklabs.net>
* Fix rltiles Makefile not working on Windows.Eino Keskitalo2010-02-231-2/+2
| | | | | | | Tested with a local Windows msysgit build and CDO's mingw cross-compile. (Thanks to Napkin!) Signed-off-by: Janne Lahdenpera <felirx@gmail.com> Signed-off-by: Eino Keskitalo <evktalo@users.sourceforge.net>
* Use correct targets in rltiles/tool/*.d files.Enne Walker2010-02-231-1/+1
| | | | Just another ".d file in a subdirectory" problem.
* Revert removal of PNG target dependencies.Enne Walker2010-02-231-1/+1
|
* rltiles/Makefile: make 'all', 'clean', and 'distclean' phony targetsSteven Noonan2010-02-221-0/+2
| | | | Signed-off-by: Steven Noonan <steven@uplinklabs.net>
* rltiles/Makefile: fix dependency generationSteven Noonan2010-02-221-2/+2
| | | | Signed-off-by: Steven Noonan <steven@uplinklabs.net>
* rltiles/Makefile: make $(RLTILES) an order-only dependencySteven Noonan2010-02-221-1/+1
| | | | Signed-off-by: Steven Noonan <steven@uplinklabs.net>
* rltiles/Makefile: fix tilegen targetsSteven Noonan2010-02-221-4/+1
| | | | | | They were rebuilding over and over. Now they're not. Signed-off-by: Steven Noonan <steven@uplinklabs.net>
* rltiles/Makefile: fix dependency on 'tilegen'Steven Noonan2010-02-221-1/+1
| | | | Signed-off-by: Steven Noonan <steven@uplinklabs.net>
* rltiles/makefile.unix: rename to rltiles/MakefileSteven Noonan2010-02-221-0/+88
Signed-off-by: Steven Noonan <steven@uplinklabs.net>