summaryrefslogtreecommitdiff
path: root/Makefile
AgeCommit message (Collapse)Author
2005-02-06(svn r1828) New warning flag especially for truelight (:<tron
2005-02-06(svn r1821) Move generic string handling functions to string.[ch] and ↵tron
introduce stre{cpy,cat}, see string.h for their semantics
2005-02-06(svn r1817) -Codechange: Moved depot-functions to depot.ctruelight
-Codechange: Added wrappers around depot-access (GetDepot no exists) -Codechange: Made depot-functions a bit more logic (no longer GetDepotByTile crashes your game when you request it on a non-depot tile) -Add: made depots dynamic (yes, 64k depots are possible now)
2005-02-05(svn r1803) Move debugging stuff into files of it's owntron
2005-02-04(svn r1796) Revert r1792, because MorphOS has defaults for CC/CXX, they're ↵tron
just wrong, so setting CC/CXX using ?= simply did nothing
2005-02-04(svn r1795) Change CFLAGS for MorphOS (tokai)tron
2005-02-04(svn r1793) Revert one instance of $(shell) back to ``, because MorphOS does ↵tron
The Wrong Thing(tm) when date is used within $(shell)
2005-02-04(svn r1792) Revert r1761 and set fallback values via ?= for CC and CXX as ↵tron
there seem to be platforms (MorphOS) out there which don't provide some proper defaults. Use gcc and g++ as defaults, because cc and c++ aren't available either. *sigh*
2005-02-03(svn r1780) Don't clear LIBS and LDFLAGStron
2005-02-01(svn r1763) -Add: pool.c / pool.h: generalized routines for dynamic arrays ↵truelight
(MemoryPools)
2005-02-01(svn r1761) Don't set CC and CXXtron
If somebody tried to use alternate compilers via an environment variable the assignment in the Makefile simply overwrote that.
2005-02-01(svn r1758) Replace `` with $(shell), because the latter is only evaluated ↵tron
once instead of over and over again
2005-01-31(svn r1755) Trim trailing whitespacetron
2005-01-31(svn r1751) - Feature: New PathFinder (NPF).matthijs
- Supports trains, road vehicles and ships. - Uses A* pathfinding (same codebase as the new ai). - Currently unlimited search depth, so might perform badly on large maps/networks (especially ships). - Will always find a route if there is one. - Allows custom penalties for obstacles to be set in openttd.cfg (npf_ values). - With NPF enabled, ships can have orders that are very far apart. Be careful, this will break (ships get lost) when the old pathfinder is used again. - Feature: Disabling 90 degree turns for trains and ships. - Requires NPF to be enabled. - Ships and trains can no longer make weird 90 degree turns on tile borders. - Codechange: Removed table/directions.h. - table/directions.h contained ugly static tables but was included more than once. The tables, along with a few new ones are in npf.[ch] now. Better suggestions for a location? - Fix: Binary heap in queue.c did not allocate enough space, resulting in a segfault. - Codechange: Rewritten FindFirstBit2x64, added KillFirstBit2x64. - Codechange: Introduced constant INVALID_TILE, to replace the usage of 0 as an invalid tile. Also replaces TILE_WRAPPED. - Codechange: Moved TileAddWrap() to map.[ch] - Add TileIndexDiffCByDir(), TileIndexDiffCByDir(). - Codechange: Moved IsTrainStationTile() to station.h - Add: IsRoadStationTile() and GetRoadStationDir().
2005-01-30(svn r1745) Use -fno-inline when DEBUGingtron
2005-01-30(svn r1744) DEBUG and PROFILE can be used at the same time.tron
2005-01-29(svn r1715) Move [GS]etMapExtraBits to tile.[ch]tron
2005-01-25(svn r1672) Simplify dependency tracking and actually implement it for C++ ↵tron
files, too. Note: Do "make clean" to get rid of the old dependency files
2005-01-25(svn r1671) Remove WARNING_DISPLAY, because it contained no warning, but an ↵tron
optimization flag
2005-01-25(svn r1670) Garbage collect some variables, because they are only used once ↵tron
and hide magic, like containing -o where a filename must be the next parameter
2005-01-25(svn r1669) Rename all ttd_XXX to just XXX, because we already know who we ↵tron
are (;
2005-01-25(svn r1666) Move some MorphOS compile flags to a place where they actually ↵tron
belong
2005-01-25(svn r1665) Remove VERBOSE flag, because it was only partially implementedtron
Add "info" target instead, which prints out some relevant variables used in the Makefile
2005-01-25(svn r1664) Makefile: removed the forced 0.3.6 version tagbjarni
2005-01-25(svn r1661) Makefile: added scenario to make installbjarni
2005-01-24(svn r1659) Makefile: added scenario to mac and MorphOS release scriptsbjarni
2005-01-24(svn r1649) Makefile: added known-bugs.txt to mac and MorphOS release ↵bjarni
scripts and made a really dirty hack to force 0.3.6 on binary files compiled with this makefile
2005-01-24(svn r1647) Remove stale comment and fix typotron
2005-01-23(svn r1620) Fix typo in r1619tron
2005-01-23(svn r1619) Fight bit rot in the Makefile:tron
- Begin all echos with ===> to visually emphasise them - Add @ to suppress printing of commands where it was missing - Add echos to rules where none were - Rephrase some existing echos - Remove VERBOSE_FILTER, because piping errors to /dev/null is ... a bad idea
2005-01-23(svn r1616) Introduce ttd_strlcat() and use it to de-uglify some piece of ↵tron
code in misc_cmd. While here rename the len parameter of ttd_strlcpy() to size, because it is a buffer size and not a string length. Also add -Wwrite-strings to the Makefile, because the above mentioned piece of code was the only part which triggered this warning.
2005-01-22(svn r1600) Mac: applied the new icon to the mac binary filebjarni
2005-01-22(svn r1594) Convert all undefined parameter lists to (void) and add the ↵tron
appropriate warning flags in the Makefile
2005-01-19(svn r1570) Make the gcc version test work with old versions of test (i.e. ↵tron
don't use the < operator)
2005-01-17(svn r1553) Check which gcc version is present and only set availible ↵tron
compiler flags
2005-01-17(svn r1552) Make ottd compile on Zetatron
2005-01-15(svn r1530) Makefilefix: now the binary never links to SDL if DEDICATED is ↵bjarni
set. Thanks to igor2code for making me aware of this issue even through I fixed it in a different way than his patch did. (I made dedicated never link to sdl, nomatter what makefile.config says)
2005-01-12(svn r1486) -Codechange: moved all 'signs' stuff to signs.c/h and prepared ↵truelight
it for dynamic arrays
2005-01-10(svn r1474) Added some gcc flags in the Makefilecelestar
2005-01-10(svn r1470) Revert r1457, this warning option was introduced with gcc 3.4tron
2005-01-10(svn r1457) Make Darvater happy: -Wdeclaration-after-statementtron
2005-01-09(svn r1449) -Fix: signed/unsigned error on windowsdarkvater
-Change: Makefile added -Wsign-compare flag
2005-01-08(svn r1432) -Fix: I seem to be unable to revert a simple file :struelight
2005-01-08(svn r1431) -Fix: oeps, I added my personal Makefile in the last commit :(truelight
2004-12-24(svn r1274) Makefile: networking is not longer experimentalbjarni
2004-12-23(svn r1268) -Fix: some warnings in gfx.c fixeddarkvater
-Fix: Makefile now correctly works for cygwin/mingw; altough defining only cygwin does not compile the game -Fix: moved SDL information message from severity 0 to 1. Only errors/severe warnings should be level 0
2004-12-22(svn r1236) MorphOS: added make release like in OSX (tokai)bjarni
MorphOS: cleaned up the code telling the difference between AmigaOS and MorphOS (tokai)
2004-12-20(svn r1182) -Fix: Makefile had a small glitch, making it impossible to ↵truelight
compile the game (Oskar_)
2004-12-19(svn r1180) Makefile: fixed dependancies so the flag -j can be used. It ↵bjarni
makes the compilation process into more than one job which makes it able to benefit from multiple CPUs. Using -j without setting a limit of jobs (like -j2) is not a great idea (thanks to ln-- for reporting the need for this one)
2004-12-15(svn r1117) Move map arrays and some related macros into their own files ↵tron
map.c and map.h