mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 20:13:32 +01:00
27 lines
516 B
Makefile
27 lines
516 B
Makefile
# generic utility modules
|
|
# (c) 2001 jannet it services
|
|
# contact@jannet.de
|
|
# $Id$
|
|
|
|
include $(MODDIR)/make/defs.mk
|
|
include $(MODDIR)/make/rules.mk
|
|
|
|
all: $(LIB_SO) $(LINKS_SO) $(MSVCPP_IMPLIB) $(STRIP_DONE)
|
|
install: install_LIB
|
|
clean: libclean local_libclean
|
|
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 *.exp *.lib
|
|
endif
|
|
|
|
clean.all:
|
|
rm -rf *.a *.o *~ st* .*.swp *.done
|