mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-22 03:11:18 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@22011 72102866-910b-0410-8b05-ffd578937521
24 lines
649 B
Text
24 lines
649 B
Text
#
|
|
# Options common to bundles
|
|
#
|
|
ADDITIONAL_OBJCFLAGS +=
|
|
ADDITIONAL_CFLAGS +=
|
|
ADDITIONAL_CPPFLAGS +=
|
|
ADDITIONAL_INCLUDE_DIRS += -I../..
|
|
ADDITIONAL_LIB_DIRS += -L../../Library/$(GNUSTEP_OBJ_DIR)
|
|
|
|
DO_LIB_LINK=no
|
|
ifeq ($(GNUSTEP_TARGET_OS), mingw32)
|
|
DO_LIB_LINK=yes
|
|
endif
|
|
ifeq ($(GNUSTEP_TARGET_OS), cygwin)
|
|
DO_LIB_LINK=yes
|
|
endif
|
|
ifeq ($(DO_LIB_LINK), yes)
|
|
$(GNUSTEP_INSTANCE)_LIB_DIRS += -L../../Library/ProjectCenter.framework
|
|
$(GNUSTEP_INSTANCE)_BUNDLE_LIBS += -lProjectCenter
|
|
endif
|
|
|
|
BUNDLE_EXTENSION = .bundle
|
|
BUNDLE_INSTALL_DIR = $(GNUSTEP_SYSTEM_ROOT)/Applications/ProjectCenter.app/Resources
|
|
$(PACKAGE_NAME)_STANDARD_INSTALL = no
|