# GNUstep makefile -include ../../config.make include $(GNUSTEP_MAKEFILES)/common.make include ../Version include ./Version ifneq ($(frameworks),yes) LIBRARY_NAME = libWOExtensions else FRAMEWORK_NAME = WOExtensions endif # TODO: can we save the .wox with frameworks? BUNDLE_NAME = WOExtensions BUNDLE_EXTENSION = .wox BUNDLE_INSTALL_DIR = $(GNUSTEP_INSTALLATION_DIR)/Library/WOxElemBuilders-$(MAJOR_VERSION).$(MINOR_VERSION)/ FHS_MANPAGES += doc/*.3 libWOExtensions_HEADER_FILES_DIR = . libWOExtensions_HEADER_FILES_INSTALL_DIR = /WOExtensions libWOExtensions_HEADER_FILES = \ WOExtensions.h \ WORedirect.h \ libWOExtensions_OBJC_FILES = \ WOxExtElemBuilder.m \ compat.m \ WOKeyValueConditional.m \ WORedirect.m \ WOTabPanel.m \ WOTable.m \ JSAlertPanel.m \ JSConfirmPanel.m \ JSImageFlyover.m \ JSTextFlyover.m \ JSValidatedField.m \ JSModalWindow.m \ WOCollapsibleComponentContent.m \ WODictionaryRepetition.m \ WOThresholdColoredNumber.m \ WORadioButtonMatrix.m \ WOCheckBoxMatrix.m \ WOExtensions_OBJC_FILES += WOExtensionsBuilderModule.m WOExtensions_PRINCIPAL_CLASS = WOExtensionsBuilderModule # framework support WOExtensions_HEADER_FILES_DIR = WOExtensions WOExtensions_HEADER_FILES = $(libWOExtensions_HEADER_FILES) WOExtensions_OBJC_FILES = $(libWOExtensions_OBJC_FILES) WOExtensions_SUBPROJECTS = $(libWOExtensions_SUBPROJECTS) # building -include GNUmakefile.preamble ifneq ($(frameworks),yes) include $(GNUSTEP_MAKEFILES)/library.make else include $(GNUSTEP_MAKEFILES)/framework.make endif include $(GNUSTEP_MAKEFILES)/bundle.make -include GNUmakefile.postamble -include fhs.make