2001-01-25 10:37:55 +01:00
|
|
|
SUBDIRS =
|
|
|
|
|
|
|
|
LIBRARY =
|
|
|
|
BINARY = mapper
|
|
|
|
|
2001-02-10 11:58:46 +01:00
|
|
|
include ../Makefile.include
|
|
|
|
|
2001-01-25 10:37:55 +01:00
|
|
|
SOURCES = $(wildcard *.c)
|
|
|
|
OBJECTS = $(SOURCES:%.c=$(BUILD_DIR)/%.o)
|
|
|
|
|
|
|
|
## more definitions
|
|
|
|
|
|
|
|
INCLUDES += \
|
2001-01-28 09:20:05 +01:00
|
|
|
-I../common/util \
|
|
|
|
-I../common/kernel \
|
2001-04-01 08:58:45 +02:00
|
|
|
-I../common/spells \
|
2001-01-28 09:20:05 +01:00
|
|
|
-I../common
|
2001-01-25 10:37:55 +01:00
|
|
|
|
|
|
|
LIBS += \
|
|
|
|
-le-modules \
|
|
|
|
-le-kernel \
|
|
|
|
-le-items \
|
|
|
|
-le-spells \
|
|
|
|
-le-triggers \
|
|
|
|
-le-races \
|
|
|
|
-le-attributes \
|
|
|
|
-le-util \
|
|
|
|
-lm
|
2001-02-15 11:50:29 +01:00
|
|
|
ifeq ($(NCURSES), 1)
|
|
|
|
LIBS += -lncurses
|
|
|
|
else
|
|
|
|
LIBS += -lcurses
|
|
|
|
endif
|
2001-01-25 10:37:55 +01:00
|
|
|
|
2001-02-10 11:58:46 +01:00
|
|
|
##
|
|
|
|
## conversion code for old triggers - should only be used for free eressea,
|
|
|
|
## and only for old datafiles.
|
|
|
|
##
|
|
|
|
ifeq ($(CONVERT_TRIGGERS), 1)
|
|
|
|
SUBDIRS += old
|
|
|
|
LIBRARIES += $(PUBLISH_DIR)/libe-compat.a
|
|
|
|
LIBS += -le-compat
|
|
|
|
endif
|
|
|
|
|
2001-01-25 10:37:55 +01:00
|
|
|
# executable:
|
|
|
|
$(BUILD_DIR)/$(BINARY):: $(BUILD_DIR) $(OBJECTS)
|
|
|
|
$(LD) -o $@ $(OBJECTS) $(LDFLAGS)
|
|
|
|
$(INSTALL) $@ $(PUBLISH_DIR)/
|
|
|
|
|
2001-01-31 00:16:17 +01:00
|
|
|
$(PUBLISH_DIR)/$(BINARY): $(BUILD_DIR)/$(BINARY)
|
|
|
|
$(INSTALL) $< $@
|