summaryrefslogtreecommitdiffstats
path: root/hunt/hunt/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Use PREFIX nowCameron Katri2021-03-281-3/+3
|
* Get all the games compiling for iOSCameron Katri2021-02-221-6/+12
|
* introduce some common variables for use in GCC warning disables:mrg2019-10-131-1/+3
| | | | | | | | | | | | | | | | | GCC_NO_FORMAT_TRUNCATION -Wno-format-truncation (GCC 7/8) GCC_NO_STRINGOP_TRUNCATION -Wno-stringop-truncation (GCC 8) GCC_NO_STRINGOP_OVERFLOW -Wno-stringop-overflow (GCC 8) GCC_NO_CAST_FUNCTION_TYPE -Wno-cast-function-type (GCC 8) use these to turn off warnings for most GCC-8 complaints. many of these are false positives, most of the real bugs are already commited, or are yet to come. we plan to introduce versions of (some?) of these that use the "-Wno-error=" form, which still displays the warnings but does not make it an error, and all of the above will be re-considered as either being "fix me" (warning still displayed) or "warning is wrong."
* split off a bunch of the nastier network code into its own filedholland2014-03-301-2/+2
|
* Split hunt and huntd's includes, instead of incestuously sharing a piledholland2014-03-291-5/+3
| | | | | | | | | | | | of external data and function declarations between the two programs. Common constants and defines now go in hunt_common.h. Stuff that belongs only to hunt is in hunt/hunt_private.h. Stuff that belongs only to huntd is in huntd/hunt.h. Copy some declarations that are used in both programs under the same names (but are not actually the same objects) from huntd/hunt.h to hunt/hunt_private.h. Move others that are only used in hunt. Remove some entirely unused material, and tidy up standard includes.
* When using -lcurses, you also need -lterminfo.he2010-02-061-3/+3
| | | | This fixes the build for sun2, and also builds with LDSTATIC=-static, since archive libraries don't record inter-library dependencies.
* Userland now builds and uses terminfo instead of termcap.roy2010-02-031-2/+2
| | | OK: core@, jdc@
* Simply include -lcurses instead of -lcurses -ltermcapjtc1998-02-181-3/+3
|
* move hunt under dm(6)mrg1997-11-191-1/+2
|
* Must have the correct library link order to be able to linkragge1997-11-051-2/+2
| | | the binaries static.
* use CPPFLAGS instead of CFLAGSlukem1997-10-221-2/+2
|
* build hunt.mrg1997-10-041-0/+13