mirror of
https://github.com/gnustep/libs-steptalk.git
synced 2025-02-22 19:11:05 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/steptalk/trunk@16600 72102866-910b-0410-8b05-ffd578937521
33 lines
758 B
Makefile
33 lines
758 B
Makefile
#
|
|
# MyLanguage language bundle
|
|
#
|
|
# @COPYRIGHT@
|
|
#
|
|
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
|
|
|
###########################################################################
|
|
# Language name
|
|
|
|
BUNDLE_NAME = MyLanguage
|
|
|
|
MyLanguage_PRINCIPAL_CLASS = MyLanguageEngine
|
|
|
|
###########################################################################
|
|
# Files
|
|
|
|
MyLanguage_OBJC_FILES = \
|
|
MyLanguageEngine.m
|
|
|
|
|
|
# MyLanguage_BUNDLE_LIBS += -lmylanguage
|
|
|
|
###########################################################################
|
|
|
|
BUNDLE_EXTENSION := .stlanguage
|
|
BUNDLE_INSTALL_DIR:=$(GNUSTEP_INSTALLATION_DIR)/Library/StepTalk/Languages
|
|
|
|
-include GNUmakefile.preamble
|
|
include $(GNUSTEP_MAKEFILES)/bundle.make
|
|
-include GNUMakefile.postamble
|
|
|