1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
PACKAGE_NAME = gworkspace
include $(GNUSTEP_MAKEFILES)/common.make
include Version
FRAMEWORK_NAME = FSNode
FSNode_OBJC_FILES = \
FSNode.m \
FSNodeRep.m \
FSNodeRepIcons.m \
FSNFunctions.m \
FSNTextCell.m \
FSNBrowserCell.m \
FSNBrowserScroll.m \
FSNBrowserMatrix.m \
FSNBrowserColumn.m \
FSNBrowser.m \
FSNIcon.m \
FSNIconsView.m \
FSNListView.m \
FSNPathComponentsViewer.m \
FSNode_HEADER_FILES = \
FSNode.h \
FSNodeRep.h \
FSNFunctions.h \
FSNTextCell.h \
FSNBrowserCell.h \
FSNBrowserScroll.h \
FSNBrowserMatrix.h \
FSNBrowserColumn.h \
FSNBrowser.h \
FSNIcon.h \
FSNIconsView.h \
FSNListView.h \
FSNPathComponentsViewer.h \
FSNode_HAS_RESOURCE_BUNDLE = yes
FSNode_RESOURCE_FILES = \
Resources/Images/* \
Resources/*.lproj \
FSNode_LANGUAGES = \
English \
Italian \
German \
French \
Spanish \
LIBRARIES_DEPEND_UPON += $(GUI_LIBS) $(FND_LIBS) $(OBJC_LIBS) $(SYSTEM_LIBS)
ifeq ($(findstring darwin, $(GNUSTEP_TARGET_OS)), darwin)
ifeq ($(OBJC_RUNTIME_LIB), gnu)
SHARED_LD_POSTFLAGS += -lgnustep-base -lgnustep-gui
endif
endif
SUBPROJECTS = ExtendedInfo
-include GNUmakefile.preamble
include $(GNUSTEP_MAKEFILES)/framework.make
include $(GNUSTEP_MAKEFILES)/aggregate.make
-include GNUmakefile.postamble
|