2001-07-06 13:12:14 +00:00
|
|
|
# generic utility modules
|
|
|
|
|
# (c) 2001 jannet it services
|
|
|
|
|
# contact@jannet.de
|
|
|
|
|
# $Id$
|
|
|
|
|
|
2001-07-27 22:02:40 +00:00
|
|
|
include $(MODDIR)/make/defs.mk
|
2005-04-02 20:05:31 +00:00
|
|
|
include $(MODDIR)/make/rules.mk
|
|
|
|
|
|
2007-08-21 16:20:30 +00:00
|
|
|
all: $(LIB_SO) $(LINKS_SO) $(MSVCPP_IMPLIB) $(STRIP_DONE)
|
|
|
|
|
install: install_LIB
|
2005-04-05 08:50:22 +00:00
|
|
|
clean: libclean local_libclean
|
2005-04-02 20:24:19 +00:00
|
|
|
distclean: clean
|
2007-08-21 16:20:30 +00:00
|
|
|
|
2007-07-18 16:41:37 +00:00
|
|
|
local_libclean: clean.mingw clean.unix clean.all
|
|
|
|
|
|
|
|
|
|
clean.unix:
|
|
|
|
|
ifneq ($(TARGET),mingw)
|
|
|
|
|
rm -rf *.so.* *.so st*
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
clean.mingw:
|
|
|
|
|
ifeq ($(TARGET),mingw)
|
|
|
|
|
rm -rf *.dll *.def
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
clean.all:
|
|
|
|
|
rm -rf *.a *.o *~ st* .*.swp *.done
|