jw-pkg/make/lib.mk

30 lines
577 B
Makefile
Raw Normal View History

# generic utility modules
# (c) 2001 jannet it services
# contact@jannet.de
# $Id$
include $(MODDIR)/make/defs.mk
2002-07-10 12:24:05 +00:00
all: $(LIB_SO) $(LINKS_SO) $(MSVCPP_IMPLIB) $(STRIP_DONE)
include $(MODDIR)/make/rules.mk
2002-07-12 17:34:50 +00:00
install: $(LOCAL_TARGETS) all $(INSTALLED_LIB_A) $(INSTALLED_LIB_SO) $(INSTALLED_LINKS_SO)
clean: libclean local_libclean
2005-04-02 20:24:19 +00:00
distclean: clean
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
2005-04-02 20:24:19 +00:00