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/goldnode/Makefile
Alexander S. Aganichev 0d62764685 Add pure MinGW support
2003-10-23 10:46:36 +00:00

23 lines
361 B
Makefile

# -*- makefile -*-
TOP=..
SHORTTARGET=gn
TARGET=goldnode
INCS=-I$(TOP)/goldlib/gall -I$(TOP)/goldlib/gcfg -I$(TOP)/golded3/
ifeq ($(findstring EMX, $(PATH)), EMX)
STDLIBS=-lstdcpp
else
ifeq ($(TERM),cygwin)
STDLIBS=-luser32
else
ifeq ($(TERM),MSYS)
STDLIBS=-luser32
endif
endif
endif
GLIBS=gall
CLEANS=
include $(TOP)/GNUmakef.inc
include $(TOP)/GNUmakef.prg