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

23 lines
319 B
Makefile

# -*- makefile -*-
TOP=..
SHORTTARGET=rddt
TARGET=rddt
INCS=-I$(TOP)/goldlib/gall
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