2005-05-05 16:37:31 +00:00
|
|
|
# generic utility modules
|
|
|
|
|
# (c) 2001 jannet it services
|
|
|
|
|
# contact@jannet.de
|
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
|
|
ifeq ($(PLUGIN),)
|
2005-12-01 08:57:28 +00:00
|
|
|
PLUGIN = lib$(notdir $(shell pwd)).so
|
2005-05-05 16:37:31 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
include $(MODDIR)/make/defs.mk
|
|
|
|
|
include $(MODDIR)/make/rules.mk
|
2006-03-04 13:41:00 +00:00
|
|
|
# include $(MODDIR)/make/depend.mk
|
2005-05-05 16:37:31 +00:00
|
|
|
|
2005-12-01 08:57:28 +00:00
|
|
|
ifeq ($(INSTALLED_PLUGIN),)
|
|
|
|
|
INSTALLED_PLUGIN = $(INSTALL_LIBDIR)/$(PLUGIN)
|
|
|
|
|
endif
|
2005-05-05 16:37:31 +00:00
|
|
|
|
2005-12-01 08:57:28 +00:00
|
|
|
all: $(PLUGIN)
|
|
|
|
|
install: $(INSTALLED_PLUGIN)
|
2005-05-05 16:37:31 +00:00
|
|
|
clean: execlean localclean
|
2005-12-01 08:57:28 +00:00
|
|
|
distclean: clean
|