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/gcfg/Makefile

24 lines
359 B
Makefile
Raw Normal View History

2000-02-25 10:15:17 +00:00
# -*- makefile -*-
2007-01-14 00:52:46 +00:00
ifeq ($(TERM),cygwin)
MINGW=true
else
ifeq ($(OSTYPE),msys)
MINGW=true
endif
endif
2000-02-25 10:15:17 +00:00
TOP=../..
TARGET=gcfg
INCS=-I$(TOP)/goldlib -I$(TOP)/goldlib/gall -I$(TOP)/goldlib/gcfg
2007-01-14 00:52:46 +00:00
ifdef MINGW
INCS+=-I$(TOP)/goldlib/glibc
else
ifeq ($(PLATFORM),emx)
2007-01-14 00:52:46 +00:00
INCS+=-I$(TOP)/goldlib/glibc
endif
endif
2000-02-25 10:15:17 +00:00
include $(TOP)/GNUmakef.inc
include $(TOP)/GNUmakef.lib