# Tove-style makefile template for individual modules. Take this and
# fill in filenames for your module - in normal case it should be enough
# to just fill in ARTARGET and OBJS.
#
# Author: Juhana Räsänen


# ARTARGET is used to specify an archive target - that is, the module
# object files are combined into one file with unix 'ar' program. This
# file is then easy to link into the binary in the top level makefile.
# You must write here a name for the archive file, for example bisup.a.
ARTARGET =


# OBJS must have all object files of your module. it is necessary to
# define this and ARTARGET _before_ the next step (include Rules.Make),
# otherwise the makefiles WON'T WORK.
OBJS =


# include a Rules file
include $(TOVESRC)/Rules.Make


# Dependencies are below. The line next to this is used by makedepend, so
# DO NOT DELETE
