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
|
PACKAGE_NAME = gworkspace
include $(GNUSTEP_MAKEFILES)/common.make
BUNDLE_NAME = FModuleContents
BUNDLE_EXTENSION = .finder
FModuleContents_HAS_RESOURCE_BUNDLE = yes
OBJCFLAGS += -Wall
FModuleContents_OBJC_FILES = FModuleContents.m
FModuleContents_PRINCIPAL_CLASS = FModuleContents
FModuleContents_RESOURCE_FILES = \
Resources/Images/* \
Resources/FModuleContents.gorm
include GNUmakefile.preamble
include $(GNUSTEP_MAKEFILES)/bundle.make
include GNUmakefile.postamble
|