TOPDIR = .. SUBDIRS = -include $(TOPDIR)/makefiles/gmake/platform.mk INCLUDE_DIRS = -I$(TOPDIR)/include/wolf -I. BINS = ifeq "$(ENABLE_THREADS)" "1" THREADING_OBJS = \ threads/mutex.o \ threads/threads.o else THREADING_OBJS = endif PORT_OBJS = \ port/string.o \ port/unistd.o \ port/stdio.o \ port/stdlib.o \ port/time.o \ port/netdb.o ifeq "$(ENABLE_NLS)" "1" I18N_OBJS = \ i18n/gettext.o else I18N_OBJS = endif LOG_OBJS = \ log/log.o DAEMON_OBJS = \ daemon/signals.o \ daemon/pidfile.o \ daemon/daemon.o SERVICE_OBJS = \ service/service.o NETWORK_OBJS = \ network/network_unix.o LIBRARY_OBJS = \ library/loader.o OBJS = \ errors.o \ $(THREADING_OBJS) \ $(PORT_OBJS) \ $(I18N_OBJS) \ $(LOG_OBJS) \ $(DAEMON_OBJS) \ $(NETWORK_OBJS) \ $(LIBRARY_OBJS) CATALOG_NAME = libwolf GETTEXT_LANGUAGES = de GETTEXT_FILES = $(OBJS:.o=.c) $(SERVICE_OBJS:.o=.c) GETTEXT_TRIGGERS = _ gettext_noop gettext STATIC_LIB = libwolf.a DYNAMIC_LIB = libwolf.so DYNAMIC_LIB_MAJOR = 0 DYNAMIC_LIB_MINOR = 0 DYNAMIC_LIB_PATCH = 0 -include $(TOPDIR)/makefiles/gmake/sub.mk local_all: local_clean: -@rm -f port/*.bak -@rm -f port/*~ -@rm -f port/*.d ifeq "$(ENABLE_NLS)" "1" -@rm -f i18n/*.bak -@rm -f i18n/*~ -@rm -f i18n/*.d endif -@rm -f log/*.bak -@rm -f log/*~ -@rm -f log/*.d -@rm -f daemon/*.bak -@rm -f daemon/*~ -@rm -f daemon/*.d ifeq "$(ENABLE_THREADS)" "1" -@rm -f threads/*.bak -@rm -f threads/*~ -@rm -f threads/*.d endif -@rm -f library/*.bak -@rm -f library/*~ -@rm -f library/*.d -@rm -f network/*.bak -@rm -f network/*~ -@rm -f network/*.d local_distclean: local_install: