134 lines
2.3 KiB
Makefile
134 lines
2.3 KiB
Makefile
# -*- makefile -*-
|
|
|
|
ifndef PLATFORM
|
|
|
|
ifeq ($(TERM),cygwin)
|
|
MINGW=true
|
|
PLATFORM=cyg
|
|
else
|
|
ifeq ($(OSTYPE),msys)
|
|
MINGW=true
|
|
PLATFORM=cyg
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(findstring EMX, $(PATH)), EMX)
|
|
PLATFORM=emx
|
|
endif
|
|
|
|
ifneq ($(DJGPP),) # DJGPP build (enviroment variable 'DJGPP' is defined)
|
|
PLATFORM=djg
|
|
endif
|
|
|
|
ifeq ($(OSTYPE),beos) # BeOS build
|
|
PLATFORM=be
|
|
endif
|
|
|
|
endif # ifndef PLATFORM
|
|
|
|
ifeq ($(PLATFORM),cyg)
|
|
CAT=cat
|
|
CC=gcc -mno-cygwin
|
|
CXX=g++ -mno-cygwin
|
|
AR=ar
|
|
RANLIB=ranlib
|
|
WINDRES=windres
|
|
EXEEXT=.exe
|
|
OBJEXT=.o
|
|
LIBEXT=.a
|
|
else
|
|
ifeq ($(PLATFORM),emx)
|
|
CAT=cat
|
|
CC=gcc
|
|
AR=ar
|
|
RANLIB=ar s
|
|
SHELL=bash
|
|
EXEEXT=.exe
|
|
OBJEXT=.o
|
|
LIBEXT=.a
|
|
#CC=gcc -Zomf
|
|
#AR=emxomfar
|
|
#RANLIB=emxomfar s
|
|
#PLATFORM=emx
|
|
#SHELL=bash
|
|
#EXEEXT=.exe
|
|
#OBJEXT=.obj
|
|
#LIBEXT=.lib
|
|
CXX=$(CC)
|
|
else
|
|
ifeq ($(PLATFORM),djg)
|
|
CAT=command.com /c type
|
|
CC=gcc
|
|
CXX=gxx
|
|
AR=ar
|
|
RANLIB=ranlib
|
|
SHELL=sh
|
|
EXEEXT=.exe
|
|
OBJEXT=.o
|
|
LIBEXT=.a
|
|
else
|
|
ifeq ($(PLATFORM),be)
|
|
CAT=cat
|
|
CC=gcc
|
|
CXX=g++
|
|
AR=ar
|
|
RANLIB=ranlib
|
|
EXEEXT=
|
|
OBJEXT=.o
|
|
LIBEXT=.a
|
|
LNKFLAGS+=-lbe -ltextencoding
|
|
else # Linux, *BSD or another unix-like OS
|
|
CAT=cat
|
|
CC=gcc
|
|
CXX=g++
|
|
AR=ar
|
|
RANLIB=ranlib
|
|
PLATFORM=lnx
|
|
EXEEXT=
|
|
OBJEXT=.o
|
|
LIBEXT=.a
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
CFLAGS+=-g -funsigned-char $(INCS) -Wall -Wno-sign-compare -pedantic -O2 -DPRAGMA_PACK # -fomit-frame-pointer
|
|
LNKFLAGS+=-g
|
|
CPPFLAGS+=$(CFLAGS) -fno-exceptions -fno-rtti
|
|
|
|
# comment following lines if you dislike ncurses
|
|
# uncomment "buggy ncurses" if your build requires additional keypresses to
|
|
# pass areascan
|
|
# NOTE: lnx is active for any *NIX system and only ncurses mode is portable
|
|
ifeq ($(PLATFORM),lnx)
|
|
CPPFLAGS+=-D__USE_NCURSES__ #-DBUGGY_NCURSES
|
|
STDLIBS+=-lncurses
|
|
endif
|
|
|
|
# uncomment the next line for better koi-8 support. do not do it for
|
|
# international builds since latin-1 support will be broken.
|
|
ifeq ($(PLATFORM),lnx)
|
|
CPPFLAGS+=#-DKOI8
|
|
endif
|
|
|
|
#uncomment the following line if you build version to be used
|
|
#on BONE-powered systems(Dan0 etc.) This improves some operations ...
|
|
ifeq ($(PLATFORM),be)
|
|
CPPFLAGS+=#-DBEOS_BONE_BUILD
|
|
endif
|
|
|
|
# force not to use coprocessor features in DOS, if you have one you may remove this
|
|
ifeq ($(PLATFORM),djg)
|
|
#CFLAGS+=-mcpu=i386 # GCC v2.x.x
|
|
CFLAGS+=-march=i386 #-mtune=i686 # GCC v3.x.x
|
|
STDLIBS+=-llocal
|
|
endif
|
|
|
|
# force not to use coprocessor features in DOS, if you have one you may remove this
|
|
ifeq ($(PLATFORM),djg)
|
|
STDLIBS+= -lwmemu
|
|
endif
|
|
|
|
BIN=bin
|
|
OBJPATH=obj
|
|
LIBPATH=lib
|