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/goldlib/gall/Makefile

36 lines
539 B
Makefile
Raw Normal View History

2000-02-25 10:15:17 +00:00
# -*- makefile -*-
2004-01-20 15:00:03 +00:00
ifeq ($(TERM),cygwin)
MINGW=true
2003-12-22 08:02:19 +00:00
else
ifeq ($(OSTYPE),msys)
2004-01-20 15:00:03 +00:00
MINGW=true
2003-12-22 08:02:19 +00:00
endif
endif
2000-02-25 10:15:17 +00:00
TOP=../..
TARGET=gall
INCS=-I$(TOP)/goldlib/gall
ifdef MINGW
2000-02-25 10:15:17 +00:00
INCS+=-I$(TOP)/goldlib/glibc
else
ifeq ($(findstring EMX, $(PATH)), EMX)
2000-02-25 10:15:17 +00:00
INCS+=-I$(TOP)/goldlib/glibc
endif
endif
include $(TOP)/Config.def
ifneq ($(findstring GCFG_NO_MYSPELL, $(CPPFLAGS)), GCFG_NO_MYSPELL)
2006-04-10 19:04:04 +00:00
INCS+=-I$(TOP)/goldlib/hunspell
endif
2000-02-25 10:15:17 +00:00
include $(TOP)/GNUmakef.inc
ifeq ($(PLATFORM),emx)
ifeq ($(AR),emxomfar)
AR += -p32
endif
endif
include $(TOP)/GNUmakef.lib