2004-08-09 17:04:08 +00:00
|
|
|
|
# This Makefile is partially based on "a completely generic Makefile",
|
|
|
|
|
# originally created by Justin Husted <husted@cs>
|
|
|
|
|
#
|
|
|
|
|
# Rewrite and sane dependencies support by Petr Baudis <pasky@ucw.cz>
|
|
|
|
|
# Cygwin support and configuration by Jaen Saul <slowbyte@hot.ee>
|
|
|
|
|
# A lot of modifications by Bjarni Corfitzen <bjarni@openttd.com>
|
|
|
|
|
#
|
|
|
|
|
# Last modified by: $Author: strigeus $
|
|
|
|
|
# On: $Date: 2004/03/11 19:15:06 $
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
|
#
|
|
|
|
|
# Usage
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
# Synopsis:
|
|
|
|
|
#
|
|
|
|
|
# make WITH_ZLIB=1 UNIX=1 MANUAL_CONFIG=1
|
|
|
|
|
#
|
|
|
|
|
# (See below for the list of possible options.)
|
|
|
|
|
#
|
|
|
|
|
# Alternately, you can run make without the MANUAL_CONFIG part. It then
|
|
|
|
|
# generates Makefile.config, where you can customize all the options.
|
|
|
|
|
# However beware that for all subsequent calls the option values from
|
|
|
|
|
# Makefile.config take precedence to the commandline options.
|
|
|
|
|
#
|
|
|
|
|
# (That means that you probably want to either specify the options on command
|
|
|
|
|
# line together with MANUAL_CONFIG=1 or you want to specify no commandline
|
|
|
|
|
# options at all.)
|
|
|
|
|
|
|
|
|
|
# Targets:
|
|
|
|
|
#
|
|
|
|
|
# Defaults to building binary
|
|
|
|
|
# clean: remove intermediate build files
|
|
|
|
|
# mrproper: remove intermediate files and makefile configuration
|
|
|
|
|
# upgradeconf: add new options to old Makefile.config
|
|
|
|
|
# osx: OS X application
|
2004-12-07 17:58:06 +00:00
|
|
|
|
# release: used by OSX to make a dmg file ready to release
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
|
|
# Options:
|
|
|
|
|
#
|
|
|
|
|
# Summary of OS choice defines
|
|
|
|
|
# WIN32: building on Windows
|
|
|
|
|
# UNIX: building on *nix derivate (Linux, FreeBSD)
|
|
|
|
|
# OSX: building on Mac OS X
|
|
|
|
|
# MORPHOS: building on MorphOS
|
2004-11-15 07:53:09 +00:00
|
|
|
|
# BEOS: building on BeOS
|
2004-11-17 09:07:29 +00:00
|
|
|
|
# SUNOS: building on SunOS (Solaris)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
#
|
|
|
|
|
# Summary of library choice defines
|
|
|
|
|
# WITH_ZLIB: savegames using zlib
|
|
|
|
|
# WITH_PNG: screenshots using PNG
|
|
|
|
|
# WITH_SDL: SDL video driver support
|
|
|
|
|
#
|
|
|
|
|
# Summary of other defines:
|
|
|
|
|
# MANUAL_CONFIG: do not use Makefile.config, config options set manually
|
|
|
|
|
# DEBUG: build in debug mode
|
|
|
|
|
# PROFILE: build in profile mode, disables -s and -fomit-frame-pointer
|
|
|
|
|
# TRANSLATOR: build in translator mode (untranslated strings are prepended by
|
|
|
|
|
# a <TODO> mark)
|
|
|
|
|
# RELEASE: this will be the released version number. It replaces all places
|
|
|
|
|
# where it normally would print the revision number
|
2004-09-12 21:49:38 +00:00
|
|
|
|
# MIDI: if set, it will use it as custom path to midi player.
|
2005-03-27 15:42:25 +00:00
|
|
|
|
# If unset, it will use the hardcoded path in the c code
|
|
|
|
|
# This can still be overriden by the music.extmidi openttd.cfg option.
|
2004-12-24 00:33:41 +00:00
|
|
|
|
# WITH_NETWORK: enable networking
|
|
|
|
|
# DEDICATED: allows compilation on UNIX without SDL. Useful for dedicated servers
|
2004-08-09 17:04:08 +00:00
|
|
|
|
#
|
2004-09-18 16:29:12 +00:00
|
|
|
|
# Paths:
|
|
|
|
|
# INSTALL: If not set, the game uses the directory of the binary to
|
2004-12-04 17:54:56 +00:00
|
|
|
|
# store everything (lang, data, gm, save and openttd.cfg), this is the `old' behaviour.
|
2004-09-18 16:29:12 +00:00
|
|
|
|
# In this case, none of the following paths are used, you also should _not_
|
|
|
|
|
# use `make install', but copy the required stuff yourself (or just play out
|
|
|
|
|
# of you source directory, which should work fine).
|
|
|
|
|
# If you want to use `make install' to install the game globally, you should
|
|
|
|
|
# define it _before_ you build the game. If you only define INSTALL when you
|
|
|
|
|
# do `make install', the game won't be able to find it's files (so you should
|
|
|
|
|
# also define all the following paths before building).
|
|
|
|
|
#
|
|
|
|
|
# So, the following paths should be defined if INSTALL is defined.
|
|
|
|
|
# None of these paths have to end with /
|
|
|
|
|
# PREFIX: Normally /usr/local
|
|
|
|
|
# BINARY_DIR: The location of the binary, normally games. (Will be prefixed
|
|
|
|
|
# with $PREFIX)
|
2004-12-04 17:54:56 +00:00
|
|
|
|
# DATA_DIR: The location of the data (lang, data and gm), normally
|
2004-09-18 16:29:12 +00:00
|
|
|
|
# share/games/openttd. (Will be prefixed with $PREFIX)
|
|
|
|
|
# PERSONAL_DIR: The directory where openttd.cfg and the save folder will be
|
|
|
|
|
# stored. You cannot use ~ here, define USE_HOMEDIR for that.
|
|
|
|
|
# USE_HOMEDIR: If this variable is set, PERSONAL_DIR will be prefixed with
|
|
|
|
|
# ~/ at runtime (the user's homedir)
|
2004-12-07 17:16:57 +00:00
|
|
|
|
# SECOND_DATA_PATH Use this data dir if a file is not found in the data dir in the data path
|
2005-01-31 19:22:44 +00:00
|
|
|
|
# CUSTOM_LANG_PATH If this is set, it will use the path given to search for lng files
|
2004-12-07 17:16:57 +00:00
|
|
|
|
# instead of the lang dir in the data path
|
|
|
|
|
# NOTE: both SECOND_DATA_PATH and CUSTOM_LANG_PATH uses paths relative to where OTTD is opened
|
2004-09-18 16:29:12 +00:00
|
|
|
|
#
|
|
|
|
|
# DEST_DIR: make install will use this directory instead of the filesystem
|
|
|
|
|
# root to install its files. This should normally not be used by
|
|
|
|
|
# ordinary users, currently it is only used for the debian
|
|
|
|
|
# packaging. This value should only be set when calling `make
|
|
|
|
|
# install' and is not saved in Makefile.config
|
2005-03-09 23:59:18 +00:00
|
|
|
|
# (Note that DESTDIR is checked if DEST_DIR is not set.)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
#
|
|
|
|
|
# STATIC: link statically
|
|
|
|
|
# CYGWIN: build in Cygwin environment
|
|
|
|
|
# MINGW: build with MingW compiler, link with MingW libraries
|
|
|
|
|
#
|
2005-02-28 21:54:04 +00:00
|
|
|
|
# VERBOSE: show full compiler invocations instead of brief progress messages
|
|
|
|
|
#
|
2005-04-14 12:57:21 +00:00
|
|
|
|
# Special for crosscompiling there are some commands available:
|
|
|
|
|
#
|
|
|
|
|
# ENDIAN_FORCE: forces the endian-check to give a certain result. Can be either BE or LE.
|
|
|
|
|
# WINDRES: the location of your windres
|
|
|
|
|
# CC_HOST: the gcc of your localhost if you are making a target that produces incompatible executables
|
|
|
|
|
# CFLAGS_HOST: cflags used for CC_HOST. Make it something if you are getting errors when you try to compi
|
|
|
|
|
# windows executables on linux. (just: CFLAGS_HOST:='-I' or something)
|
|
|
|
|
#
|
2004-08-09 17:04:08 +00:00
|
|
|
|
# Experimental (does not work properly):
|
|
|
|
|
# WITH_DIRECTMUSIC: enable DirectMusic MIDI support
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
|
#
|
|
|
|
|
# Configuration
|
|
|
|
|
#
|
|
|
|
|
|
2005-01-24 21:39:16 +00:00
|
|
|
|
|
2004-09-08 09:07:18 +00:00
|
|
|
|
# Makefile version tag
|
2005-03-11 22:48:37 +00:00
|
|
|
|
# it checks if the version tag in Makefile.config is the same and force update outdated config files
|
2005-04-14 12:57:21 +00:00
|
|
|
|
MAKEFILE_VERSION:=7
|
2004-09-08 09:07:18 +00:00
|
|
|
|
|
2005-01-24 20:55:54 +00:00
|
|
|
|
# CONFIG_WRITER has to be found even for manual configuration
|
2004-08-09 17:04:08 +00:00
|
|
|
|
CONFIG_WRITER=makefiledir/Makefile.config_writer
|
|
|
|
|
|
|
|
|
|
ifndef MANUAL_CONFIG
|
|
|
|
|
# Automatic configuration
|
|
|
|
|
MAKE_CONFIG:=Makefile.config
|
|
|
|
|
MAKEFILE:=Makefile
|
|
|
|
|
LIB_DETECTION=makefiledir/Makefile.libdetection
|
|
|
|
|
CONFIG_WRITER=makefiledir/Makefile.config_writer
|
|
|
|
|
|
|
|
|
|
# Apply automatic configuration
|
|
|
|
|
# See target section for how this is built, suppress errors
|
|
|
|
|
# since first time it isn't found but make reads this twice
|
|
|
|
|
-include $(MAKE_CONFIG)
|
|
|
|
|
else
|
|
|
|
|
CONFIG_INCLUDED:=1
|
|
|
|
|
endif
|
|
|
|
|
|
2005-03-11 22:48:37 +00:00
|
|
|
|
# updates Makefile.config if it's outdated
|
2004-09-08 09:07:18 +00:00
|
|
|
|
ifneq ($(MAKEFILE_VERSION),$(CONFIG_VERSION))
|
2004-09-09 19:16:27 +00:00
|
|
|
|
ifndef MANUAL_CONFIG # manual config should not check this
|
|
|
|
|
UPDATECONFIG:=upgradeconf
|
|
|
|
|
CONFIG_INCLUDED:=
|
|
|
|
|
else
|
|
|
|
|
# this should define SDL-CONFIG for manual configuration
|
|
|
|
|
ifeq ($(shell uname),FreeBSD)
|
|
|
|
|
SDL-CONFIG:=sdl11-config
|
|
|
|
|
else
|
|
|
|
|
SDL-CONFIG:=sdl-config
|
|
|
|
|
endif
|
|
|
|
|
endif
|
2005-04-14 13:46:40 +00:00
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
ifndef SDL-CONFIG
|
|
|
|
|
UPDATECONFIG:=upgradeconf
|
|
|
|
|
CONFIG_INCLUDED:=
|
2004-08-09 17:04:08 +00:00
|
|
|
|
endif
|
|
|
|
|
|
2005-03-11 22:48:37 +00:00
|
|
|
|
# this is used if there aren't any Makefile.config
|
2004-08-09 17:04:08 +00:00
|
|
|
|
ifndef CONFIG_INCLUDED
|
2004-09-18 16:29:12 +00:00
|
|
|
|
# sets network on by default if there aren't any config file
|
2004-12-04 17:54:56 +00:00
|
|
|
|
ENABLE_NETWORK:=1
|
2004-09-18 16:29:12 +00:00
|
|
|
|
|
|
|
|
|
# paths for make install
|
|
|
|
|
# disabled as they would break it for some (many?) people if they were default
|
|
|
|
|
#PREFIX:=/usr/local
|
|
|
|
|
#DATA_DIR:=share/games/openttd
|
|
|
|
|
#BINARY_DIR:=games
|
|
|
|
|
#PERSONAL_DIR:=.openttd
|
|
|
|
|
#USE_HOMEDIR:=1
|
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
|
-include $(LIB_DETECTION)
|
|
|
|
|
endif
|
|
|
|
|
|
2004-09-08 09:07:18 +00:00
|
|
|
|
ifdef SUPRESS_LANG_ERRORS
|
|
|
|
|
LANG_ERRORS = >/dev/null 2>&1
|
|
|
|
|
endif
|
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
|
ifdef STATIC
|
|
|
|
|
ifndef WIN32
|
|
|
|
|
ifndef OSX
|
|
|
|
|
ifndef MORPHOS
|
|
|
|
|
ifndef SKIP_STATIC_CHECK
|
2005-03-11 22:48:37 +00:00
|
|
|
|
$(error Static is only known to work on MorphOS and MacOSX!!! --- Check Makefile.config for more info and howto bypass this check)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
|
2004-12-09 23:17:03 +00:00
|
|
|
|
ifdef RELEASE
|
|
|
|
|
ifdef OSX
|
|
|
|
|
ifndef STATIC
|
|
|
|
|
$(error do not make dynamically linked releases. Most users can't use those)
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
endif
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
|
|
# Force SDL on UNIX platforms
|
|
|
|
|
ifndef WITH_SDL
|
|
|
|
|
ifdef UNIX
|
2004-12-04 20:34:59 +00:00
|
|
|
|
ifndef DEDICATED
|
|
|
|
|
$(error You need to have SDL installed in order to run OpenTTD on UNIX. Use DEDICATED if you want to compile a CLI based server)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
endif
|
|
|
|
|
endif
|
2004-12-04 20:34:59 +00:00
|
|
|
|
endif
|
|
|
|
|
|
2005-01-15 21:30:16 +00:00
|
|
|
|
# remove the dependancy for sdl if DEDICALTED is used
|
|
|
|
|
ifdef DEDICATED
|
|
|
|
|
WITH_SDL:=
|
|
|
|
|
endif
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
|
#
|
|
|
|
|
# Compiler configuration
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
# Executable file extension
|
|
|
|
|
ifdef WIN32
|
|
|
|
|
EXE=.exe
|
|
|
|
|
else
|
|
|
|
|
EXE=
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
# Set output executable names
|
2004-08-12 22:06:56 +00:00
|
|
|
|
TTD=openttd$(EXE)
|
2004-09-04 14:20:12 +00:00
|
|
|
|
ENDIAN_CHECK=endian_check$(EXE)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
STRGEN=strgen/strgen$(EXE)
|
|
|
|
|
OSXAPP="OpenTTD.app"
|
|
|
|
|
|
|
|
|
|
# What revision are we compiling, if we have an idea?
|
|
|
|
|
REV_NUMBER := $(shell if test -d .svn; then svnversion . | tr -dc 0-9; fi)
|
|
|
|
|
|
|
|
|
|
ifdef RELEASE
|
|
|
|
|
REV:=$(RELEASE)
|
|
|
|
|
else
|
2004-11-17 18:22:21 +00:00
|
|
|
|
REV := $(shell if test -d .svn; then svnversion . | awk '{ print "r"$$0 }'; fi)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
tmp_test:=$(shell echo "$(REV)" | grep "M" )
|
|
|
|
|
ifdef tmp_test
|
|
|
|
|
REV_NUMBER:=1
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
ifndef REV_NUMBER
|
|
|
|
|
REV_NUMBER:=0
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
# MorphOS needs builddate
|
2005-02-04 17:57:07 +00:00
|
|
|
|
BUILDDATE=`date +%d.%m.%y`
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
|
|
# AMD64 needs a little more settings to work
|
|
|
|
|
ifeq ($(shell uname -m), x86_64)
|
|
|
|
|
endwarnings:=endwarnings
|
|
|
|
|
64_bit_warnings:=64_bit_warnings
|
2004-09-04 14:20:12 +00:00
|
|
|
|
BASECFLAGS += -m64
|
2004-08-09 17:04:08 +00:00
|
|
|
|
endif
|
|
|
|
|
|
2005-04-14 12:57:21 +00:00
|
|
|
|
# Check if there is a windres override
|
|
|
|
|
ifndef WINDRES
|
|
|
|
|
WINDRES = windres
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
# Check if we have a new target
|
|
|
|
|
ifdef CC_TARGET
|
|
|
|
|
CC = $(CC_TARGET)
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
# Check if CC_HOST is defined. If not, it is CC
|
|
|
|
|
ifndef CC_HOST
|
|
|
|
|
CC_HOST = $(CC)
|
|
|
|
|
endif
|
|
|
|
|
ifndef CFLAGS_HOST
|
|
|
|
|
CFLAGS_HOST = $(BASECFLAGS)
|
|
|
|
|
endif
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
|
|
# When calling the compiler, use these flags
|
|
|
|
|
# -g debugging symbols
|
|
|
|
|
# -Wall all warnings
|
|
|
|
|
# -s automatic strip
|
|
|
|
|
#
|
|
|
|
|
# You may also want:
|
|
|
|
|
# -O optimize or -O2 fully optimize (O's above 2 are not recommended)
|
|
|
|
|
# -pg profile - generate profiling data. See "man gprof" to use this.
|
|
|
|
|
|
2005-01-19 20:22:10 +00:00
|
|
|
|
CC_VERSION = $(shell $(CC) -dumpversion | cut -c 1,3)
|
2005-01-17 13:21:10 +00:00
|
|
|
|
|
|
|
|
|
# GNU make can only test for (in)equality
|
|
|
|
|
# this is a workaround to test for >=
|
2005-01-19 20:22:10 +00:00
|
|
|
|
ifeq ($(shell if test $(CC_VERSION) -ge 29; then echo true; fi), true)
|
2005-01-22 20:23:18 +00:00
|
|
|
|
CFLAGS += -O -Wall -Wno-multichar -Wsign-compare -Wstrict-prototypes
|
2005-02-06 18:38:42 +00:00
|
|
|
|
CFLAGS += -Wwrite-strings -Wpointer-arith
|
2005-01-17 13:21:10 +00:00
|
|
|
|
endif
|
2005-01-19 20:22:10 +00:00
|
|
|
|
ifeq ($(shell if test $(CC_VERSION) -ge 30; then echo true; fi), true)
|
2005-01-17 13:21:10 +00:00
|
|
|
|
CFLAGS += -W -Wno-unused-parameter
|
|
|
|
|
endif
|
2005-01-19 20:22:10 +00:00
|
|
|
|
ifeq ($(shell if test $(CC_VERSION) -ge 34; then echo true; fi), true)
|
2005-01-22 20:23:18 +00:00
|
|
|
|
CFLAGS += -Wdeclaration-after-statement -Wold-style-definition
|
2005-01-17 13:21:10 +00:00
|
|
|
|
endif
|
|
|
|
|
|
2005-01-30 23:03:31 +00:00
|
|
|
|
ifdef DEBUG
|
2005-03-10 15:23:13 +00:00
|
|
|
|
ifeq ($(shell expr $(DEBUG) \>= 1), 1)
|
|
|
|
|
CFLAGS += -g -D_DEBUG
|
|
|
|
|
endif
|
|
|
|
|
ifeq ($(shell expr $(DEBUG) \>= 2), 1)
|
|
|
|
|
CFLAGS += -fno-inline
|
|
|
|
|
endif
|
|
|
|
|
ifeq ($(shell expr $(DEBUG) \>= 3), 1)
|
|
|
|
|
CFLAGS += -O0
|
|
|
|
|
endif
|
2005-01-30 23:03:31 +00:00
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
ifdef PROFILE
|
|
|
|
|
CFLAGS += -pg
|
|
|
|
|
LDFLAGS += -pg
|
|
|
|
|
endif
|
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
|
CDEFS=-DWITH_REV
|
|
|
|
|
|
2005-01-30 23:03:31 +00:00
|
|
|
|
ifndef DEBUG
|
|
|
|
|
ifndef PROFILE
|
2004-08-09 17:04:08 +00:00
|
|
|
|
# Release mode
|
|
|
|
|
ifndef MORPHOS
|
|
|
|
|
# automatical strip breaks under morphos
|
|
|
|
|
BASECFLAGS += -s
|
|
|
|
|
LDFLAGS += -s
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
ifdef OSX
|
|
|
|
|
# these compilerflags makes the app run as fast as possible without making the app unstable. It works on G3 or newer
|
2005-01-25 16:03:45 +00:00
|
|
|
|
BASECFLAGS += -O3 -funroll-loops -fsched-interblock -falign-loops=16 -falign-jumps=16 -falign-functions=16 -falign-jumps-max-skip=15 -falign-loops-max-skip=15 -mdynamic-no-pic -mpowerpc-gpopt -force_cpusubtype_ALL
|
2004-08-09 17:04:08 +00:00
|
|
|
|
else
|
|
|
|
|
ifdef MORPHOS
|
2005-02-04 19:51:43 +00:00
|
|
|
|
BASECFLAGS += -O2 -noixemul -fstrict-aliasing -fexpensive-optimizations
|
|
|
|
|
BASECFLAGS += -mcpu=604 -fno-inline -mstring -mmultiple
|
2004-08-09 17:04:08 +00:00
|
|
|
|
else
|
2005-01-25 16:03:45 +00:00
|
|
|
|
BASECFLAGS += -O2
|
2004-08-09 17:04:08 +00:00
|
|
|
|
endif
|
|
|
|
|
ifndef PROFILE
|
|
|
|
|
BASECFLAGS += -fomit-frame-pointer
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
ifdef STATIC
|
|
|
|
|
ifndef OSX # OSX can't build static if -static flag is used
|
|
|
|
|
LDFLAGS += -static
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
|
2004-12-23 23:15:07 +00:00
|
|
|
|
# If building on MingW don't link with Cygwin libs
|
2004-08-09 17:04:08 +00:00
|
|
|
|
ifdef WIN32
|
|
|
|
|
ifdef CYGWIN
|
2004-12-23 23:15:07 +00:00
|
|
|
|
BASECFLAGS += -mwin32
|
|
|
|
|
LDFLAGS += -mwin32
|
|
|
|
|
endif
|
|
|
|
|
ifdef MINGW
|
2004-08-09 17:04:08 +00:00
|
|
|
|
BASECFLAGS += -mno-cygwin
|
|
|
|
|
LDFLAGS += -mno-cygwin
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
CFLAGS += $(BASECFLAGS)
|
|
|
|
|
|
|
|
|
|
ifdef UNIX
|
|
|
|
|
CDEFS += -DUNIX
|
|
|
|
|
endif
|
|
|
|
|
|
2004-11-15 07:53:09 +00:00
|
|
|
|
ifdef BEOS
|
|
|
|
|
CDEFS += -DBEOS
|
|
|
|
|
LDFLAGS += -lmidi -lbe
|
|
|
|
|
ifdef WITH_NETWORK
|
|
|
|
|
ifdef BEOS_NET_SERVER
|
2005-01-17 13:13:11 +00:00
|
|
|
|
CDEFS += -DBEOS_NET_SERVER
|
|
|
|
|
else
|
|
|
|
|
# Zeta needs a few more libraries than R5
|
|
|
|
|
LDFLAGS += -lbind -lsocket
|
2004-11-15 07:53:09 +00:00
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
|
2005-01-25 15:38:35 +00:00
|
|
|
|
ifdef MORPHOS
|
2005-02-04 19:51:43 +00:00
|
|
|
|
# -Wstrict-prototypes generates much noise because of system headers
|
|
|
|
|
CFLAGS += -Wno-strict-prototypes
|
2005-01-25 15:38:35 +00:00
|
|
|
|
endif
|
|
|
|
|
|
2004-11-17 09:07:29 +00:00
|
|
|
|
ifdef SUNOS
|
|
|
|
|
CDEFS += -DSUNOS
|
|
|
|
|
ifdef WITH_NETWORK
|
|
|
|
|
LDFLAGS += -lnsl -lsocket
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
|
# SDL config
|
|
|
|
|
ifdef WITH_SDL
|
|
|
|
|
CDEFS += -DWITH_SDL
|
2005-02-01 05:28:18 +00:00
|
|
|
|
CFLAGS += $(shell $(SDL-CONFIG) --cflags)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
ifdef STATIC
|
2005-02-01 05:28:18 +00:00
|
|
|
|
LIBS += $(shell $(SDL-CONFIG) --static-libs)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
else
|
2005-02-01 05:28:18 +00:00
|
|
|
|
LIBS += $(shell $(SDL-CONFIG) --libs)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# zlib config
|
|
|
|
|
ifdef WITH_ZLIB
|
|
|
|
|
CDEFS += -DWITH_ZLIB
|
|
|
|
|
ifdef STATIC
|
|
|
|
|
ifdef OSX
|
|
|
|
|
# zlib is default on OSX, so everybody have it. No need for static linking
|
|
|
|
|
LIBS += -lz
|
|
|
|
|
else
|
|
|
|
|
ifndef STATIC_ZLIB_PATH
|
|
|
|
|
ifndef MANUAL_CONFIG
|
2005-03-11 22:48:37 +00:00
|
|
|
|
# updates Makefile.config with the zlib path
|
2004-08-09 17:04:08 +00:00
|
|
|
|
UPDATECONFIG:=upgradeconf
|
|
|
|
|
endif
|
|
|
|
|
TEMP:=$(shell ls /lib 2>/dev/null | grep "zlib.a")$(shell ls /lib 2>/dev/null | grep "libz.a")
|
|
|
|
|
ifdef TEMP
|
|
|
|
|
STATIC_ZLIB_PATH:=/lib/$(TEMP)
|
|
|
|
|
else
|
|
|
|
|
TEMP:=$(shell ls /usr/lib 2>/dev/null | grep "zlib.a")$(shell ls /usr/lib 2>/dev/null | grep "libz.a")
|
|
|
|
|
ifdef TEMP
|
|
|
|
|
STATIC_ZLIB_PATH:=/usr/lib/$(TEMP)
|
|
|
|
|
else
|
|
|
|
|
TEMP:=$(shell ls /usr/local/lib 2>/dev/null | grep "zlib.a")$(shell ls /usr/local/lib 2>/dev/null | grep "libz.a")
|
|
|
|
|
ifdef TEMP
|
|
|
|
|
STATIC_ZLIB_PATH:=/usr/local/lib/$(TEMP)
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
LIBS += $(STATIC_ZLIB_PATH)
|
|
|
|
|
endif
|
|
|
|
|
else
|
|
|
|
|
LIBS += -lz
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
# libpng config
|
|
|
|
|
ifdef WITH_PNG
|
|
|
|
|
CDEFS += -DWITH_PNG
|
|
|
|
|
# FreeBSD doesn't use libpng-config
|
|
|
|
|
ifdef FREEBSD
|
|
|
|
|
LIBS += -lpng
|
|
|
|
|
else
|
2005-02-01 05:28:18 +00:00
|
|
|
|
CFLAGS += $(shell libpng-config --cflags)
|
2004-12-04 23:19:31 +00:00
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
|
# seems like older libpng versions are broken and need this
|
|
|
|
|
PNGCONFIG_FLAGS = --ldflags --libs
|
|
|
|
|
ifdef STATIC
|
2004-12-10 13:00:11 +00:00
|
|
|
|
ifdef OSX
|
|
|
|
|
# Seems like we need a tiny hack for OSX static to work
|
2005-02-01 05:28:18 +00:00
|
|
|
|
LIBS += $(shell libpng-config --prefix)/lib/libpng.a
|
2004-12-10 13:00:11 +00:00
|
|
|
|
else
|
2005-02-01 05:28:18 +00:00
|
|
|
|
LIBS += $(shell libpng-config --static $(PNGCONFIG_FLAGS))
|
2004-12-10 13:00:11 +00:00
|
|
|
|
endif
|
2004-08-09 17:04:08 +00:00
|
|
|
|
else
|
2005-02-01 05:28:18 +00:00
|
|
|
|
LIBS += $(shell libpng-config --L_opts $(PNGCONFIG_FLAGS))
|
2004-08-09 17:04:08 +00:00
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
|
2004-11-08 21:11:52 +00:00
|
|
|
|
# enables/disables assert()
|
2004-11-08 21:24:48 +00:00
|
|
|
|
ifdef DISABLE_ASSERTS
|
|
|
|
|
CFLAGS += -DNDEBUG
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
# automatically disables asserts for release
|
|
|
|
|
ifdef RELEASE
|
2004-11-08 21:11:52 +00:00
|
|
|
|
ifndef ENABLE_ASSERTS
|
|
|
|
|
CFLAGS += -DNDEBUG
|
|
|
|
|
endif
|
2004-11-08 21:24:48 +00:00
|
|
|
|
endif
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
|
|
ifdef TRANSLATOR
|
|
|
|
|
STRGEN_FLAGS=-t
|
|
|
|
|
else
|
|
|
|
|
STRGEN_FLAGS=
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# MIDI setup
|
|
|
|
|
ifdef OSX
|
|
|
|
|
ifndef MIDI
|
2005-04-24 12:47:09 +00:00
|
|
|
|
MIDI:=$(OSXAPP)/Contents/macosx/track_starter
|
2004-08-09 17:04:08 +00:00
|
|
|
|
endif
|
2004-12-07 17:16:57 +00:00
|
|
|
|
ifndef SECOND_DATA_PATH
|
2005-04-24 12:47:09 +00:00
|
|
|
|
SECOND_DATA_PATH:="$(OSXAPP)/Contents/Data/"
|
2004-12-07 17:16:57 +00:00
|
|
|
|
endif
|
|
|
|
|
ifndef CUSTOM_LANG_DIR
|
2005-04-24 12:47:09 +00:00
|
|
|
|
CUSTOM_LANG_DIR:="$(OSXAPP)/Contents/Lang/"
|
2004-12-07 17:16:57 +00:00
|
|
|
|
endif
|
2004-08-09 17:04:08 +00:00
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
ifdef MIDI
|
|
|
|
|
CDEFS += -DEXTERNAL_PLAYER=\"$(MIDI)\"
|
|
|
|
|
ifdef MIDI_ARG
|
|
|
|
|
CDEFS += -DMIDI_ARG=\"$(MIDI_ARG)\"
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
ifdef WITH_NETWORK
|
|
|
|
|
CDEFS += -DENABLE_NETWORK
|
2004-12-04 17:54:56 +00:00
|
|
|
|
ifdef QNX
|
|
|
|
|
LIBS += -lsocket
|
|
|
|
|
endif
|
2004-08-09 17:04:08 +00:00
|
|
|
|
ifdef UNIX
|
|
|
|
|
ifndef OSX
|
|
|
|
|
ifndef MORPHOS
|
|
|
|
|
# this have caused problems on many platforms and disabling it didn't break anything
|
|
|
|
|
# now we test if disabling it as a general breaks it for anybody
|
|
|
|
|
#LIBS += -lresolv
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
|
2004-12-07 17:16:57 +00:00
|
|
|
|
|
|
|
|
|
ifdef SECOND_DATA_PATH
|
|
|
|
|
CDEFS += -DSECOND_DATA_DIR=\"$(SECOND_DATA_PATH)/\"
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
ifdef CUSTOM_LANG_DIR
|
|
|
|
|
CDEFS += -DCUSTOM_LANG_DIR=\"$(CUSTOM_LANG_DIR)/\"
|
|
|
|
|
endif
|
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
|
ifdef WITH_DIRECTMUSIC
|
|
|
|
|
CDEFS += -DWIN32_ENABLE_DIRECTMUSIC_SUPPORT
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
ifdef WIN32
|
2005-04-14 12:57:21 +00:00
|
|
|
|
LIBS += -lws2_32 -lwinmm -lgdi32 -ldxguid -lole32
|
|
|
|
|
ifdef WITH_DIRECTMUSIC
|
|
|
|
|
LIBS += -lstdc++
|
|
|
|
|
endif
|
2004-08-09 17:04:08 +00:00
|
|
|
|
TTDLDFLAGS += -Wl,--subsystem,windows
|
|
|
|
|
endif
|
|
|
|
|
|
2005-03-09 23:59:18 +00:00
|
|
|
|
ifndef DEST_DIR
|
|
|
|
|
DEST_DIR = $(DESTDIR)
|
|
|
|
|
endif
|
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
|
# sets up the paths for use for make install
|
2004-09-18 16:29:12 +00:00
|
|
|
|
ifdef INSTALL
|
|
|
|
|
# We use _PREFIXED vars here, so the paths are recalculated every time, and
|
|
|
|
|
# the prefix is not prepended in the makefile config
|
|
|
|
|
BINARY_DIR_PREFIXED:=$(PREFIX)/$(BINARY_DIR)
|
|
|
|
|
DATA_DIR_PREFIXED:=$(PREFIX)/$(DATA_DIR)
|
|
|
|
|
# We use _INSTALL vars here, these vars are the locations where the files will
|
|
|
|
|
# be installed
|
|
|
|
|
DATA_DIR_INSTALL=$(DEST_DIR)/$(DATA_DIR_PREFIXED)
|
|
|
|
|
BINARY_DIR_INSTALL=$(DEST_DIR)/$(BINARY_DIR_PREFIXED)
|
|
|
|
|
# Let the code know where to find stuff
|
|
|
|
|
ifdef DATA_DIR_PREFIXED
|
|
|
|
|
CDEFS += -DGAME_DATA_DIR=\"$(DATA_DIR_PREFIXED)/\"
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
ifdef PERSONAL_DIR
|
|
|
|
|
CDEFS += -DPERSONAL_DIR=\"$(PERSONAL_DIR)/\"
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
ifdef USE_HOMEDIR
|
|
|
|
|
CDEFS += -DUSE_HOMEDIR
|
2004-08-09 17:04:08 +00:00
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
|
#
|
|
|
|
|
# What to compile
|
|
|
|
|
# (users do not want to modify anything below)
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Sources
|
|
|
|
|
|
2004-12-15 22:05:40 +00:00
|
|
|
|
C_SOURCES += ai.c
|
|
|
|
|
C_SOURCES += ai_build.c
|
|
|
|
|
C_SOURCES += ai_new.c
|
|
|
|
|
C_SOURCES += ai_pathfinder.c
|
|
|
|
|
C_SOURCES += ai_shared.c
|
|
|
|
|
C_SOURCES += aircraft_cmd.c
|
|
|
|
|
C_SOURCES += aircraft_gui.c
|
|
|
|
|
C_SOURCES += airport.c
|
|
|
|
|
C_SOURCES += airport_gui.c
|
|
|
|
|
C_SOURCES += aystar.c
|
|
|
|
|
C_SOURCES += bridge_gui.c
|
|
|
|
|
C_SOURCES += callback_table.c
|
|
|
|
|
C_SOURCES += clear_cmd.c
|
|
|
|
|
C_SOURCES += command.c
|
|
|
|
|
C_SOURCES += console.c
|
|
|
|
|
C_SOURCES += console_cmds.c
|
2005-02-05 15:58:59 +00:00
|
|
|
|
C_SOURCES += debug.c
|
2004-12-15 22:05:40 +00:00
|
|
|
|
C_SOURCES += dedicated.c
|
2005-02-06 10:18:47 +00:00
|
|
|
|
C_SOURCES += depot.c
|
2004-12-15 22:05:40 +00:00
|
|
|
|
C_SOURCES += disaster_cmd.c
|
|
|
|
|
C_SOURCES += dock_gui.c
|
|
|
|
|
C_SOURCES += dummy_land.c
|
|
|
|
|
C_SOURCES += economy.c
|
|
|
|
|
C_SOURCES += engine.c
|
|
|
|
|
C_SOURCES += engine_gui.c
|
|
|
|
|
C_SOURCES += fileio.c
|
|
|
|
|
C_SOURCES += gfx.c
|
|
|
|
|
C_SOURCES += graph_gui.c
|
|
|
|
|
C_SOURCES += newgrf.c
|
|
|
|
|
C_SOURCES += industry_cmd.c
|
|
|
|
|
C_SOURCES += industry_gui.c
|
|
|
|
|
C_SOURCES += intro_gui.c
|
|
|
|
|
C_SOURCES += landscape.c
|
|
|
|
|
C_SOURCES += main_gui.c
|
2004-12-15 22:18:54 +00:00
|
|
|
|
C_SOURCES += map.c
|
2004-12-15 22:05:40 +00:00
|
|
|
|
C_SOURCES += md5.c
|
|
|
|
|
C_SOURCES += minilzo.c
|
|
|
|
|
C_SOURCES += misc.c
|
|
|
|
|
C_SOURCES += misc_cmd.c
|
|
|
|
|
C_SOURCES += misc_gui.c
|
2005-03-12 09:38:03 +00:00
|
|
|
|
C_SOURCES += mixer.c
|
2004-12-15 22:05:40 +00:00
|
|
|
|
C_SOURCES += music_gui.c
|
|
|
|
|
C_SOURCES += namegen.c
|
|
|
|
|
C_SOURCES += network.c
|
|
|
|
|
C_SOURCES += network_client.c
|
|
|
|
|
C_SOURCES += network_data.c
|
|
|
|
|
C_SOURCES += network_gamelist.c
|
|
|
|
|
C_SOURCES += network_gui.c
|
|
|
|
|
C_SOURCES += network_server.c
|
|
|
|
|
C_SOURCES += network_udp.c
|
|
|
|
|
C_SOURCES += news_gui.c
|
2005-01-31 11:23:10 +00:00
|
|
|
|
C_SOURCES += npf.c
|
2004-12-15 22:05:40 +00:00
|
|
|
|
C_SOURCES += oldloader.c
|
|
|
|
|
C_SOURCES += order_cmd.c
|
|
|
|
|
C_SOURCES += order_gui.c
|
|
|
|
|
C_SOURCES += pathfind.c
|
|
|
|
|
C_SOURCES += player_gui.c
|
|
|
|
|
C_SOURCES += players.c
|
2005-02-01 18:30:11 +00:00
|
|
|
|
C_SOURCES += pool.c
|
2004-12-15 22:05:40 +00:00
|
|
|
|
C_SOURCES += queue.c
|
|
|
|
|
C_SOURCES += rail_cmd.c
|
|
|
|
|
C_SOURCES += rail_gui.c
|
|
|
|
|
C_SOURCES += rev.c
|
|
|
|
|
C_SOURCES += road_cmd.c
|
|
|
|
|
C_SOURCES += road_gui.c
|
|
|
|
|
C_SOURCES += roadveh_cmd.c
|
|
|
|
|
C_SOURCES += roadveh_gui.c
|
|
|
|
|
C_SOURCES += saveload.c
|
|
|
|
|
C_SOURCES += screenshot.c
|
|
|
|
|
C_SOURCES += settings.c
|
|
|
|
|
C_SOURCES += settings_gui.c
|
|
|
|
|
C_SOURCES += ship_cmd.c
|
|
|
|
|
C_SOURCES += ship_gui.c
|
2005-01-12 11:21:28 +00:00
|
|
|
|
C_SOURCES += signs.c
|
2004-12-15 22:05:40 +00:00
|
|
|
|
C_SOURCES += smallmap_gui.c
|
|
|
|
|
C_SOURCES += sound.c
|
|
|
|
|
C_SOURCES += sprite.c
|
|
|
|
|
C_SOURCES += spritecache.c
|
|
|
|
|
C_SOURCES += station_cmd.c
|
|
|
|
|
C_SOURCES += station_gui.c
|
2005-02-06 13:41:02 +00:00
|
|
|
|
C_SOURCES += string.c
|
2004-12-15 22:05:40 +00:00
|
|
|
|
C_SOURCES += strings.c
|
|
|
|
|
C_SOURCES += subsidy_gui.c
|
|
|
|
|
C_SOURCES += terraform_gui.c
|
|
|
|
|
C_SOURCES += texteff.c
|
2005-01-29 13:33:48 +00:00
|
|
|
|
C_SOURCES += tile.c
|
2004-12-15 22:05:40 +00:00
|
|
|
|
C_SOURCES += town_cmd.c
|
|
|
|
|
C_SOURCES += town_gui.c
|
|
|
|
|
C_SOURCES += train_cmd.c
|
|
|
|
|
C_SOURCES += train_gui.c
|
|
|
|
|
C_SOURCES += tree_cmd.c
|
|
|
|
|
C_SOURCES += ttd.c
|
|
|
|
|
C_SOURCES += tunnelbridge_cmd.c
|
|
|
|
|
C_SOURCES += unmovable_cmd.c
|
|
|
|
|
C_SOURCES += vehicle.c
|
|
|
|
|
C_SOURCES += vehicle_gui.c
|
|
|
|
|
C_SOURCES += viewport.c
|
|
|
|
|
C_SOURCES += water_cmd.c
|
2005-03-24 17:03:37 +00:00
|
|
|
|
C_SOURCES += waypoint.c
|
2004-12-15 22:05:40 +00:00
|
|
|
|
C_SOURCES += widget.c
|
|
|
|
|
C_SOURCES += window.c
|
|
|
|
|
|
2004-11-15 07:53:09 +00:00
|
|
|
|
CXX_SOURCES =
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
|
|
ifdef WITH_SDL
|
2004-11-15 07:53:09 +00:00
|
|
|
|
C_SOURCES += sdl.c
|
2004-08-09 17:04:08 +00:00
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
ifdef WIN32
|
2004-11-15 07:53:09 +00:00
|
|
|
|
C_SOURCES += win32.c w32dm.c
|
2004-08-09 17:04:08 +00:00
|
|
|
|
else
|
2004-11-15 07:53:09 +00:00
|
|
|
|
C_SOURCES += extmidi.c unix.c
|
2004-08-09 17:04:08 +00:00
|
|
|
|
endif
|
|
|
|
|
|
2005-01-25 15:46:32 +00:00
|
|
|
|
OBJS = $(C_SOURCES:%.c=%.o) $(CXX_SOURCES:%.cpp=%.o)
|
2004-11-15 07:53:09 +00:00
|
|
|
|
|
|
|
|
|
ifdef BEOS
|
2004-12-01 19:44:39 +00:00
|
|
|
|
CXX_SOURCES += os/beos/bemidi.cpp
|
|
|
|
|
CFLAGS += -I.
|
2004-11-15 07:53:09 +00:00
|
|
|
|
endif
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
|
|
ifdef WIN32
|
|
|
|
|
# Resource file
|
2005-01-25 15:46:32 +00:00
|
|
|
|
OBJS += winres.o
|
2004-08-09 17:04:08 +00:00
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
ifdef WITH_DIRECTMUSIC
|
2004-11-15 07:53:09 +00:00
|
|
|
|
CXX_SOURCES += w32dm2.cpp
|
2004-08-09 17:04:08 +00:00
|
|
|
|
endif
|
|
|
|
|
|
2005-01-25 16:10:06 +00:00
|
|
|
|
DEPS = $(OBJS:%.o=.deps/%.d)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
|
|
LANG_TXT = $(filter-out %.unfinished.txt,$(wildcard lang/*.txt))
|
|
|
|
|
LANGS = $(LANG_TXT:%.txt=%.lng)
|
|
|
|
|
|
2004-09-06 16:45:53 +00:00
|
|
|
|
|
2005-03-01 01:14:27 +00:00
|
|
|
|
##############################################################################
|
|
|
|
|
#
|
|
|
|
|
# Build commands
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
# If we are verbose, we will show commands prefixed by $(Q) (which acts as
|
2005-03-06 12:56:02 +00:00
|
|
|
|
# @ in the non-verbose mode), and we will show the "real" cmds instead of
|
|
|
|
|
# their quiet versions (which are used in the non-verbose mode).
|
2005-03-01 01:14:27 +00:00
|
|
|
|
# Inspired by the Linux kernel build system.
|
|
|
|
|
ifdef VERBOSE
|
|
|
|
|
Q =
|
2005-03-06 12:56:02 +00:00
|
|
|
|
quiet =
|
2005-03-01 01:14:27 +00:00
|
|
|
|
else
|
|
|
|
|
Q = @
|
2005-03-06 12:56:02 +00:00
|
|
|
|
quiet = quiet_
|
2005-03-01 01:14:27 +00:00
|
|
|
|
endif
|
|
|
|
|
|
2005-03-06 12:56:02 +00:00
|
|
|
|
# Show the command (quiet or non-quiet version based on the assignment
|
|
|
|
|
# just above) and then execute it.
|
|
|
|
|
cmd = @$(if $($(quiet)cmd_$(1)),echo $($(quiet)cmd_$(1)) &&) $(cmd_$(1))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# The build commands themselves. Note that if you omit the quiet version,
|
|
|
|
|
# nothing will be shown in the non-verbose mode.
|
|
|
|
|
|
|
|
|
|
quiet_cmd_compile_link = '===> Compiling and Linking $@'
|
2005-04-14 12:57:21 +00:00
|
|
|
|
cmd_compile_link = $(CC_HOST) $(CFLAGS_HOST) $(CDEFS) $< -o $@
|
2005-03-06 12:56:02 +00:00
|
|
|
|
|
|
|
|
|
quiet_cmd_ttd_link = '===> Linking $@'
|
|
|
|
|
cmd_ttd_link = $(CC) $(LDFLAGS) $(TTDLDFLAGS) $(OBJS) $(LIBS) -o $@
|
|
|
|
|
|
|
|
|
|
COMPILE_PARAMS=$(CFLAGS) $(CDEFS) -MD -c $< -o $@
|
|
|
|
|
|
|
|
|
|
quiet_cmd_c_compile = '===> Compiling $<'
|
|
|
|
|
cmd_c_compile = $(CC) $(COMPILE_PARAMS)
|
|
|
|
|
|
|
|
|
|
quiet_cmd_cxx_compile = '===> Compiling $<'
|
|
|
|
|
cmd_cxx_compile = $(CXX) $(COMPILE_PARAMS)
|
|
|
|
|
|
2005-03-01 01:14:27 +00:00
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
|
##############################################################################
|
|
|
|
|
#
|
|
|
|
|
# Targets
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Normal build rules
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ifdef OSX
|
|
|
|
|
OSX:=OSX
|
2005-04-14 20:42:30 +00:00
|
|
|
|
OSX_MIDI_PLAYER_FILE:=os/macosx/OpenTTDMidi.class
|
2004-08-09 17:04:08 +00:00
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
2005-04-24 15:41:01 +00:00
|
|
|
|
all: endian_target.h endian_host.h $(UPDATECONFIG) $(LANGS) $(TTD) $(OSX) $(endwarnings)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
2005-04-24 15:41:01 +00:00
|
|
|
|
endian_host.h: $(ENDIAN_CHECK)
|
|
|
|
|
@echo '===> Testing endianness for host'
|
|
|
|
|
$(Q)./$(ENDIAN_CHECK) > $@
|
|
|
|
|
|
|
|
|
|
endian_target.h: $(ENDIAN_CHECK)
|
|
|
|
|
@echo '===> Testing endianness for target'
|
2005-04-14 12:57:21 +00:00
|
|
|
|
$(Q)./$(ENDIAN_CHECK) $(ENDIAN_FORCE) > $@
|
2004-09-04 14:20:12 +00:00
|
|
|
|
|
|
|
|
|
$(ENDIAN_CHECK): endian_check.c
|
2005-03-06 12:56:02 +00:00
|
|
|
|
$(call cmd,compile_link)
|
2004-09-12 21:49:38 +00:00
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
2005-01-25 15:46:32 +00:00
|
|
|
|
$(TTD): table/strings.h $(OBJS) $(MAKE_CONFIG)
|
2005-03-06 12:56:02 +00:00
|
|
|
|
$(call cmd,ttd_link)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
2004-12-19 23:27:20 +00:00
|
|
|
|
$(OSX): $(TTD)
|
2005-03-01 01:14:27 +00:00
|
|
|
|
$(Q)rm -fr "$(OSXAPP)"
|
|
|
|
|
$(Q)mkdir -p "$(OSXAPP)"/Contents/MacOS
|
|
|
|
|
$(Q)mkdir -p "$(OSXAPP)"/Contents/Resources
|
|
|
|
|
$(Q)mkdir -p "$(OSXAPP)"/Contents/Data
|
|
|
|
|
$(Q)mkdir -p "$(OSXAPP)"/Contents/Lang
|
|
|
|
|
$(Q)echo "APPL????" > "$(OSXAPP)"/Contents/PkgInfo
|
2005-04-14 20:42:30 +00:00
|
|
|
|
$(Q)cp os/macosx/openttd.icns "$(OSXAPP)"/Contents/Resources/openttd.icns
|
|
|
|
|
$(Q)os/macosx/plistgen.sh "$(OSXAPP)" "$(REV)"
|
2005-04-24 16:01:36 +00:00
|
|
|
|
$(Q)cp os/macosx/track_starter "$(OSXAPP)"/Contents/MacOS
|
2005-04-14 20:42:30 +00:00
|
|
|
|
$(Q)ls os/macosx | grep -q "\.class" || \
|
|
|
|
|
javac os/macosx/OpenTTDMidi.java
|
2005-04-24 16:01:36 +00:00
|
|
|
|
$(Q)cp os/macosx/OpenTTDMidi.class "$(OSXAPP)"/Contents/MacOS
|
2005-04-24 12:47:09 +00:00
|
|
|
|
$(Q)cp data/* "$(OSXAPP)"/Contents/Data/
|
|
|
|
|
$(Q)cp lang/*.lng "$(OSXAPP)"/Contents/Lang/
|
2005-03-01 01:14:27 +00:00
|
|
|
|
$(Q)cp $(TTD) "$(OSXAPP)"/Contents/MacOS/$(TTD)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
|
|
$(endwarnings): $(64_bit_warnings)
|
|
|
|
|
|
|
|
|
|
$(64_bit_warnings):
|
|
|
|
|
$(warning 64 bit CPUs will get some 64 bit specific bugs!)
|
|
|
|
|
$(warning If you see any bugs, include in your bug report that you use a 64 bit CPU)
|
|
|
|
|
|
2005-04-24 15:41:01 +00:00
|
|
|
|
$(STRGEN): strgen/strgen.c endian_host.h
|
2005-03-06 12:56:02 +00:00
|
|
|
|
$(call cmd,compile_link)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
2004-11-21 11:34:07 +00:00
|
|
|
|
table/strings.h: lang/english.txt $(STRGEN)
|
2005-01-23 17:35:01 +00:00
|
|
|
|
@echo '===> Generating $@'
|
2005-03-01 01:14:27 +00:00
|
|
|
|
$(Q)$(STRGEN)
|
2004-09-12 21:49:38 +00:00
|
|
|
|
|
2004-11-21 12:21:23 +00:00
|
|
|
|
lang/%.lng: lang/%.txt $(STRGEN) lang/english.txt
|
2005-01-23 17:35:01 +00:00
|
|
|
|
@echo '===> Compiling language $(*F)'
|
2005-03-01 01:14:27 +00:00
|
|
|
|
$(Q)$(STRGEN) $(STRGEN_FLAGS) $< $(LANG_ERRORS)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
|
|
winres.o: ttd.rc
|
2005-01-23 17:35:01 +00:00
|
|
|
|
@echo '===> Compiling resource $<'
|
2005-04-14 12:57:21 +00:00
|
|
|
|
$(Q)$(WINDRES) -o $@ $<
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
2004-12-22 21:12:36 +00:00
|
|
|
|
ifdef MORPHOS
|
|
|
|
|
release: all
|
2005-03-01 01:14:27 +00:00
|
|
|
|
$(Q)rm -fr "/t/openttd-$(RELEASE)-morphos.lha"
|
|
|
|
|
$(Q)mkdir -p "/t/"
|
|
|
|
|
$(Q)mkdir -p "/t/openttd-$(RELEASE)-morphos"
|
|
|
|
|
$(Q)mkdir -p "/t/openttd-$(RELEASE)-morphos/docs"
|
|
|
|
|
$(Q)mkdir -p "/t/openttd-$(RELEASE)-morphos/data"
|
|
|
|
|
$(Q)mkdir -p "/t/openttd-$(RELEASE)-morphos/lang"
|
|
|
|
|
$(Q)mkdir -p "/t/openttd-$(RELEASE)-morphos/scenario"
|
|
|
|
|
$(Q)cp -R $(TTD) "/t/openttd-$(RELEASE)-morphos/"
|
|
|
|
|
$(Q)cp data/* "/t/openttd-$(RELEASE)-morphos/data/"
|
|
|
|
|
$(Q)cp lang/*.lng "/t/openttd-$(RELEASE)-morphos/lang/"
|
|
|
|
|
$(Q)cp scenario/* "/t/openttd-$(RELEASE)-morphos/scenario/"
|
|
|
|
|
$(Q)cp readme.txt "/t/openttd-$(RELEASE)-morphos/docs/ReadMe"
|
|
|
|
|
$(Q)cp docs/console.txt "/t/openttd-$(RELEASE)-morphos/docs/Console"
|
|
|
|
|
$(Q)cp COPYING "/t/openttd-$(RELEASE)-morphos/docs/"
|
|
|
|
|
$(Q)cp changelog.txt "/t/openttd-$(RELEASE)-morphos/docs/ChangeLog"
|
|
|
|
|
$(Q)cp known-bugs.txt "/t/openttd-$(RELEASE)-morphos/docs/known-bugs.txt"
|
|
|
|
|
$(Q)cp os/morphos/icons/openttd.info "/t/openttd-$(RELEASE)-morphos/$(TTD).info"
|
|
|
|
|
$(Q)cp os/morphos/icons/docs.info "/t/openttd-$(RELEASE)-morphos/docs.info"
|
|
|
|
|
$(Q)cp os/morphos/icons/drawer.info "/t/openttd-$(RELEASE)-morphos.info"
|
|
|
|
|
$(Q)cp os/morphos/icons/document.info "/t/openttd-$(RELEASE)-morphos/docs/ReadMe.info"
|
|
|
|
|
$(Q)cp os/morphos/icons/document.info "/t/openttd-$(RELEASE)-morphos/docs/Console.info"
|
|
|
|
|
$(Q)cp os/morphos/icons/document.info "/t/openttd-$(RELEASE)-morphos/docs/COPYING.info"
|
|
|
|
|
$(Q)cp os/morphos/icons/document.info "/t/openttd-$(RELEASE)-morphos/docs/ChangeLog.info"
|
|
|
|
|
$(Q)strip --strip-all --strip-unneeded --remove-section .comment "/t/openttd-$(RELEASE)-morphos/$(TTD)"
|
|
|
|
|
$(Q)lha a -r "t:openttd-$(RELEASE)-morphos.lha" "t:openttd-$(RELEASE)-morphos"
|
|
|
|
|
$(Q)lha a "t:openttd-$(RELEASE)-morphos.lha" "t:openttd-$(RELEASE)-morphos.info"
|
|
|
|
|
$(Q)rm -fr "/t/openttd-$(RELEASE)-morphos"
|
|
|
|
|
$(Q)rm -fr "/t/openttd-$(RELEASE)-morphos.info"
|
2004-12-22 21:12:36 +00:00
|
|
|
|
@echo "Release archive can be found in RAM:t/ now."
|
|
|
|
|
|
2005-01-31 19:22:44 +00:00
|
|
|
|
.PHONY: release
|
2004-12-22 21:12:36 +00:00
|
|
|
|
endif
|
|
|
|
|
|
2004-12-07 17:58:06 +00:00
|
|
|
|
ifdef OSX
|
|
|
|
|
release: all
|
2005-03-01 01:14:27 +00:00
|
|
|
|
$(Q)mkdir -p "OpenTTD $(RELEASE)"
|
|
|
|
|
$(Q)mkdir -p "OpenTTD $(RELEASE)"/docs
|
|
|
|
|
$(Q)mkdir -p "OpenTTD $(RELEASE)"/scenario
|
|
|
|
|
$(Q)cp -R $(OSXAPP) "OpenTTD $(RELEASE)"/
|
|
|
|
|
$(Q)cp docs/OSX_where_did_the_package_go.txt "OpenTTD $(RELEASE)"/Where\ did\ the\ package\ go.txt
|
|
|
|
|
$(Q)cp readme.txt "OpenTTD $(RELEASE)"/docs/
|
|
|
|
|
$(Q)cp docs/README_if_game_crashed_on_OSX.txt "OpenTTD $(RELEASE)"/docs/readme\ if\ crashed\ on\ OSX.txt
|
|
|
|
|
$(Q)cp docs/console.txt "OpenTTD $(RELEASE)"/docs/
|
|
|
|
|
$(Q)cp COPYING "OpenTTD $(RELEASE)"/docs/
|
|
|
|
|
$(Q)cp changelog.txt "OpenTTD $(RELEASE)"/docs/
|
|
|
|
|
$(Q)cp docs/README_if_game_crashed_on_OSX.txt "OpenTTD $(RELEASE)"/docs/
|
2005-04-14 20:42:30 +00:00
|
|
|
|
$(Q)cp os/macosx/*.webloc "OpenTTD $(RELEASE)"
|
2005-03-01 01:14:27 +00:00
|
|
|
|
$(Q)cp known-bugs.txt "OpenTTD $(RELEASE)"/known-bugs.txt
|
|
|
|
|
$(Q)cp scenario/* "OpenTTD $(RELEASE)"/scenario/
|
|
|
|
|
$(Q)/usr/bin/hdiutil create -ov -format UDZO -srcfolder "OpenTTD $(RELEASE)" openttd-"$(RELEASE)"-osx.dmg
|
|
|
|
|
$(Q)rm -fr "OpenTTD $(RELEASE)"
|
2004-12-07 17:58:06 +00:00
|
|
|
|
|
2004-12-07 18:17:41 +00:00
|
|
|
|
nightly_build: all
|
2005-03-01 01:14:27 +00:00
|
|
|
|
$(Q)mkdir -p "OpenTTD_nightly_$(DATE)"
|
|
|
|
|
$(Q)mkdir -p "OpenTTD_nightly_$(DATE)"/docs
|
|
|
|
|
$(Q)cp -R $(OSXAPP) "OpenTTD_nightly_$(DATE)"/
|
|
|
|
|
$(Q)cp docs/OSX_where_did_the_package_go.txt "OpenTTD_nightly_$(DATE)"/Where\ did\ the\ package\ go.txt
|
|
|
|
|
$(Q)cp readme.txt "OpenTTD_nightly_$(DATE)"/docs/
|
|
|
|
|
$(Q)cp docs/README_if_game_crashed_on_OSX.txt "OpenTTD_nightly_$(DATE)"/docs/readme\ if\ crashed\ on\ OSX.txt
|
|
|
|
|
$(Q)cp docs/console.txt "OpenTTD_nightly_$(DATE)"/docs/
|
|
|
|
|
$(Q)cp COPYING "OpenTTD_nightly_$(DATE)"/docs/
|
|
|
|
|
$(Q)cp revisionlog.txt "OpenTTD_nightly_$(DATE)"/revisionlog.txt
|
|
|
|
|
$(Q)cp docs/README_if_game_crashed_on_OSX.txt "OpenTTD_nightly_$(DATE)"/docs/
|
2005-04-14 20:42:30 +00:00
|
|
|
|
$(Q)cp os/macosx/*.webloc "OpenTTD_nightly_$(DATE)"/
|
2005-03-01 01:14:27 +00:00
|
|
|
|
$(Q)/usr/bin/hdiutil create -ov -format UDZO -srcfolder "OpenTTD_nightly_$(DATE)" openttd-nightly-"$(DATE)".dmg
|
|
|
|
|
$(Q)rm -fr "OpenTTD_nightly_$(DATE)"
|
2004-12-07 18:17:41 +00:00
|
|
|
|
|
|
|
|
|
.PHONY: release nightly_build
|
2004-12-07 17:58:06 +00:00
|
|
|
|
endif
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
|
|
rev.c: FORCE
|
|
|
|
|
@# setting the revision number in a place, there the binary can read it
|
2004-12-12 21:18:39 +00:00
|
|
|
|
@echo 'const char _openttd_revision[] = "$(REV)";' >>rev.c.new
|
2004-08-09 17:04:08 +00:00
|
|
|
|
@echo 'const int _revision_number = $(REV_NUMBER);' >>rev.c.new
|
|
|
|
|
@# some additions for MorphOS versions tag
|
|
|
|
|
@echo '#ifdef __MORPHOS__' >>rev.c.new
|
2004-12-12 21:18:39 +00:00
|
|
|
|
@echo 'const char morphos_versions_tag[] = "\\0$$VER: OpenTTD $(REV) ('${BUILDDATE}') <20> OpenTTD Team [MorphOS, PowerPC]";' >>rev.c.new
|
2004-08-09 17:04:08 +00:00
|
|
|
|
@echo '#endif' >>rev.c.new
|
|
|
|
|
@# Only update the real rev.c if it actually changed, to prevent
|
|
|
|
|
@# useless rebuilds.
|
|
|
|
|
@cmp -s rev.c rev.c.new 2>/dev/null || mv rev.c.new rev.c
|
|
|
|
|
@rm -f rev.c.new
|
|
|
|
|
|
|
|
|
|
FORCE:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
clean:
|
2005-01-23 17:35:01 +00:00
|
|
|
|
@echo '===> Cleaning up'
|
2005-04-24 15:41:01 +00:00
|
|
|
|
# endian.h is out-dated and no longer in use, so it can be removed soon
|
|
|
|
|
$(Q)rm -rf .deps *~ $(TTD) $(STRGEN) core table/strings.h $(LANGS) $(OBJS) $(OSX_MIDI_PLAYER_FILE) endian.h endian_host.h endian_target.h $(ENDIAN_CHECK)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
|
|
mrproper: clean
|
2005-03-01 01:14:27 +00:00
|
|
|
|
$(Q)rm -rf $(MAKE_CONFIG)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
|
|
ifndef OSX
|
|
|
|
|
ifndef MORPHOS
|
|
|
|
|
install:
|
2004-09-18 16:29:12 +00:00
|
|
|
|
ifeq ($(INSTALL),)
|
|
|
|
|
$(error make install is highly experimental at his state and not\
|
2005-03-11 22:48:37 +00:00
|
|
|
|
tested very much - use at your own risk - to use run \"make install INSTALL:=1\" - make sure Makefile.config\
|
2004-08-09 17:04:08 +00:00
|
|
|
|
is set correctly up - run \"make upgradeconf\")
|
2004-09-18 16:29:12 +00:00
|
|
|
|
endif
|
|
|
|
|
|
2004-12-04 17:54:56 +00:00
|
|
|
|
ifeq ($(PREFIX), )
|
2005-03-11 22:48:37 +00:00
|
|
|
|
$(error no prefix set - check Makefile.config)
|
2004-09-18 16:29:12 +00:00
|
|
|
|
endif
|
|
|
|
|
# We compare against the non prefixed version here, so we won't install
|
|
|
|
|
# if only the prefix has been set
|
|
|
|
|
ifeq ($(DATA_DIR),)
|
2005-03-11 22:48:37 +00:00
|
|
|
|
$(error no data path set - check Makefile.config)
|
2004-09-18 16:29:12 +00:00
|
|
|
|
endif
|
|
|
|
|
ifeq ($(BINARY_DIR),)
|
2005-03-11 22:48:37 +00:00
|
|
|
|
$(error no binary path set - check Makefile.config)
|
2004-09-18 16:29:12 +00:00
|
|
|
|
endif
|
|
|
|
|
# We'll install in $DEST_DIR instead of root if it is set (we don't
|
|
|
|
|
# care about extra /'s
|
2005-03-11 22:47:33 +00:00
|
|
|
|
install -d $(DATA_DIR_INSTALL)/lang \
|
|
|
|
|
$(DATA_DIR_INSTALL)/data \
|
|
|
|
|
$(DATA_DIR_INSTALL)/gm \
|
|
|
|
|
$(BINARY_DIR_INSTALL)
|
|
|
|
|
mkdir -p $(PERSONAL_DIR)/scenario
|
|
|
|
|
install $(TTD) $(BINARY_DIR_INSTALL)
|
|
|
|
|
install -m 644 lang/*.lng $(DATA_DIR_INSTALL)/lang
|
|
|
|
|
install -m 644 data/*.grf $(DATA_DIR_INSTALL)/data
|
|
|
|
|
install -m 644 data/opntitle.dat $(DATA_DIR_INSTALL)/data
|
|
|
|
|
install -m 644 media/openttd.64.png $(DATA_DIR_INSTALL)
|
2005-01-25 00:07:50 +00:00
|
|
|
|
cp scenario/* $(PERSONAL_DIR)/scenario/
|
2004-08-09 17:04:08 +00:00
|
|
|
|
else #MorphOS
|
|
|
|
|
install:
|
|
|
|
|
$(error make install is not supported on MorphOS)
|
|
|
|
|
endif
|
|
|
|
|
else # OSX
|
|
|
|
|
install:
|
|
|
|
|
$(error make install is not supported on MacOSX)
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
love:
|
|
|
|
|
@echo "YES! I thought you would never ask. We will have a great time. You can keep me turned on all night"
|
|
|
|
|
|
2004-12-20 14:37:52 +00:00
|
|
|
|
.PHONY: clean all $(OSX) install $(64_bit_warnings) $(endwarnings) love
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Automatic configuration
|
|
|
|
|
-include $(CONFIG_WRITER)
|
2004-09-12 21:49:38 +00:00
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
|
|
# Export all variables set to subprocesses (a bit dirty)
|
|
|
|
|
.EXPORT_ALL_VARIABLES:
|
|
|
|
|
upgradeconf: $(MAKE_CONFIG)
|
2005-03-01 01:14:27 +00:00
|
|
|
|
$(Q)rm $(MAKE_CONFIG)
|
|
|
|
|
$(Q)$(MAKE) $(MAKE_CONFIG)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
|
|
.PHONY: upgradeconf
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Internal build rules
|
|
|
|
|
|
|
|
|
|
# This makes sure the .deps dir is always around.
|
|
|
|
|
DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
|
|
|
|
|
|
|
|
|
|
# Introduce the dependencies
|
2005-01-25 15:46:32 +00:00
|
|
|
|
-include $(DEPS)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
|
|
# This compiles the object file as well as silently updating its dependencies
|
|
|
|
|
# list at the same time. It is not an issue that they aren't around during the
|
|
|
|
|
# first compilation round as we just build everything at that time anyway,
|
|
|
|
|
# therefore we do not need to watch deps.
|
2004-09-06 16:45:53 +00:00
|
|
|
|
|
2005-04-24 15:41:01 +00:00
|
|
|
|
%.o: %.c $(MAKE_CONFIG) endian_target.h table/strings.h
|
2005-03-06 12:56:02 +00:00
|
|
|
|
$(call cmd,c_compile)
|
2005-01-25 16:10:06 +00:00
|
|
|
|
@mv $(<:%.c=%.d) $(<:%.c=.deps/%.d)
|
|
|
|
|
|
2005-04-24 15:41:01 +00:00
|
|
|
|
%.o: %.cpp $(MAKE_CONFIG) endian_target.h table/strings.h
|
2005-03-06 12:56:02 +00:00
|
|
|
|
$(call cmd,cxx_compile)
|
2005-04-02 21:05:10 +00:00
|
|
|
|
@mv $(<:%.cpp=%.d) $(<:%.cpp=.deps/%.d)
|
2005-01-25 16:10:06 +00:00
|
|
|
|
|
|
|
|
|
# Silence stale header dependencies
|
|
|
|
|
%.h:
|
|
|
|
|
@true
|
2005-01-25 15:35:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
info:
|
2005-03-06 12:56:02 +00:00
|
|
|
|
@echo 'CFLAGS = $(CFLAGS)'
|
2005-01-25 15:35:11 +00:00
|
|
|
|
@echo 'LDFLAGS = $(LDFLAGS)'
|
|
|
|
|
@echo 'LIBS = $(LIBS)'
|