diff --git a/src/mapper/Makefile b/src/mapper/Makefile index 9299bc72a..bd720c2b9 100644 --- a/src/mapper/Makefile +++ b/src/mapper/Makefile @@ -24,8 +24,12 @@ LIBS += \ -le-races \ -le-attributes \ -le-util \ - -lcurses \ -lm +ifeq ($(NCURSES), 1) + LIBS += -lncurses +else + LIBS += -lcurses +endif ## ## conversion code for old triggers - should only be used for free eressea, diff --git a/src/marquardt.mk b/src/marquardt.mk new file mode 100644 index 000000000..abceef436 --- /dev/null +++ b/src/marquardt.mk @@ -0,0 +1,23 @@ + +ifndef ERESSEA + export ERESSEA=$(PWD) +endif + +# CONVERT_TRIGGERS = 1 + +NCURSES = 1 + +# Hier definieren, damit nicht '@gcc' +CC = gcc +AR = ar +CTAGS = ctags +CC = gcc +LD = gcc +INSTALL = cp + +# CFLAGS += -Wshadow + +MSG_COMPILE = "Compiling $@" +MSG_SUBDIR = "Making $@ in $$subdir" + +