41 lines
797 B
Text
41 lines
797 B
Text
# Install into the system root by default
|
|
GNUSTEP_INSTALLATION_DOMAIN=SYSTEM
|
|
RPM_DISABLE_RELOCATABLE=YES
|
|
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
|
|
|
BUNDLE_NAME = MDIndexing
|
|
BUNDLE_EXTENSION = .prefPane
|
|
|
|
MDIndexing_HAS_RESOURCE_BUNDLE = yes
|
|
|
|
OBJCFLAGS += -Wall
|
|
|
|
MDIndexing_OBJC_FILES = \
|
|
MDIndexing.m \
|
|
CategoriesEditor.m \
|
|
CategoryView.m \
|
|
StartAppWin.m
|
|
|
|
MDIndexing_PRINCIPAL_CLASS = MDIndexing
|
|
|
|
MDIndexing_RESOURCE_FILES = \
|
|
Info.plist \
|
|
MDIndexing.tiff \
|
|
Resources/categories.plist \
|
|
Resources/Images/* \
|
|
Resources/English.lproj
|
|
|
|
ifeq ($(findstring darwin, $(GNUSTEP_TARGET_OS)), darwin)
|
|
ADDITIONAL_GUI_LIBS += -lGSPreferencePanes
|
|
else
|
|
ADDITIONAL_GUI_LIBS += -lPreferencePanes
|
|
endif
|
|
|
|
include $(GNUSTEP_MAKEFILES)/bundle.make
|
|
|
|
-include GNUmakefile.preamble
|
|
-include GNUmakefile.postamble
|
|
|
|
|
|
|