This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-goldedplus/GNUmakef.def

121 lines
2.0 KiB
Modula-2
Raw Normal View History

2000-02-25 10:15:17 +00:00
# -*- makefile -*-
ifeq ($(findstring EMX, $(PATH)), EMX)
2002-06-10 06:24:11 +00:00
CAT=cat
2000-02-25 10:15:17 +00:00
CC=gcc
AR=ar
2001-05-25 03:43:20 +00:00
RANLIB=ar s
2000-02-25 10:15:17 +00:00
PLATFORM=emx
SHELL=bash
EXEEXT=.exe
OBJEXT=.o
LIBEXT=.a
#CC=gcc -Zomf
2000-02-25 10:15:17 +00:00
#AR=emxomfar
2001-05-25 03:43:20 +00:00
#RANLIB=emxomfar s
2000-02-25 10:15:17 +00:00
#PLATFORM=emx
#SHELL=bash
#EXEEXT=.exe
#OBJEXT=.obj
#LIBEXT=.lib
CXX=$(CC)
else
ifneq ($(DJGPP),)
2002-09-29 16:06:10 +00:00
CAT=command.com /c type
2000-02-25 10:15:17 +00:00
CC=gcc
CXX=gpp
AR=ar
RANLIB=ranlib
2000-02-25 10:15:17 +00:00
PLATFORM=djg
SHELL=bash
EXEEXT=.exe
OBJEXT=.o
LIBEXT=.a
else
ifeq ($(TERM),cygwin)
2002-06-10 06:24:11 +00:00
CAT=cat
2000-02-25 10:15:17 +00:00
CC=gcc -mno-cygwin
CXX=g++ -mno-cygwin
AR=ar
RANLIB=ranlib
WINDRES=windres
2000-02-25 10:15:17 +00:00
PLATFORM=cyg
SHELL=bash
EXEEXT=.exe
OBJEXT=.o
LIBEXT=.a
else
2003-12-10 08:35:16 +00:00
ifeq ($(TERM),msys)
2003-10-23 10:46:36 +00:00
CAT=cat
CC=gcc
CXX=g++
AR=ar
RANLIB=ranlib
WINDRES=windres
PLATFORM=cyg
EXEEXT=.exe
OBJEXT=.o
LIBEXT=.a
else
2003-03-29 21:33:14 +00:00
ifeq ($(OSTYPE),beos) # BeOS build
CAT=cat
CC=gcc
CXX=g++
AR=ar
RANLIB=ranlib
PLATFORM=be
EXEEXT=
OBJEXT=.o
LIBEXT=.a
LNKFLAGS+=-lbe
2003-04-05 20:23:57 +00:00
#uncomment the following line if you build version to be used
#on BONE-powered systems(Dan0 etc.) This improves some operations ...
CPPFLAGS+=-DBEOS_BONE_BUILD
2003-03-29 21:33:14 +00:00
else
2002-06-10 06:24:11 +00:00
CAT=cat
CC=gcc
2000-02-25 10:15:17 +00:00
CXX=g++
AR=ar
RANLIB=ranlib
2000-02-25 10:15:17 +00:00
PLATFORM=lnx
EXEEXT=
OBJEXT=.o
LIBEXT=.a
endif
endif
endif
2003-03-29 21:33:14 +00:00
endif
2003-10-23 10:46:36 +00:00
endif
2002-08-30 14:03:28 +00:00
CFLAGS+=-g -funsigned-char $(INCS) -Wall -Wno-sign-compare -pedantic -O2 -DPRAGMA_PACK # -fomit-frame-pointer
2000-03-22 16:55:00 +00:00
LNKFLAGS+=-g
2000-02-25 10:15:17 +00:00
CPPFLAGS+=$(CFLAGS) -fno-exceptions -fno-rtti
2001-03-16 06:22:01 +00:00
# comment following lines if you dislike ncurses
# uncomment "buggy ncurses" if your build requires additional keypresses to
# pass areascan
2001-03-16 06:22:01 +00:00
# NOTE: lnx is active for any *NIX system and only ncurses mode is portable
ifeq ($(PLATFORM),lnx)
CPPFLAGS+=-D__USE_NCURSES__ #-DBUGGY_NCURSES
2001-03-16 06:22:01 +00:00
STDLIBS+=-lncurses
endif
2000-02-25 10:15:17 +00:00
# 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
ifeq ($(PLATFORM),be)
CPPFLAGS+=#-DBEOS_BONE_BUILD
endif
2000-10-24 05:02:25 +00:00
# force not to use coprocessor features in DOS, if you have one you may remove this
ifeq ($(PLATFORM),djg)
2002-06-06 14:14:20 +00:00
CFLAGS+=-mcpu=i386
2002-06-09 09:36:02 +00:00
STDLIBS+=-llocal -lwmemu
2000-10-24 05:02:25 +00:00
endif
2000-02-25 10:15:17 +00:00
BIN=bin
OBJPATH=obj
LIBPATH=lib