mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-19 01:51:09 +00:00
Applied patch from Adam Fedor
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@10277 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
e1d2090c18
commit
5a35542c50
12 changed files with 29 additions and 25 deletions
|
@ -25,7 +25,7 @@ include $(GNUSTEP_MAKEFILES)/common.make
|
|||
|
||||
BUNDLE_NAME = PCAppProj
|
||||
BUNDLE_EXTENSION =.bundle
|
||||
BUNDLE_INSTALL_DIR =$(GNUSTEP_LOCAL_ROOT)/Library/ProjectCenter/
|
||||
BUNDLE_INSTALL_DIR =$(GNUSTEP_INSTALLATION_DIR)/Library/ProjectCenter/
|
||||
|
||||
PCAppProj_OBJC_FILES = \
|
||||
PCAppProj.m \
|
||||
|
|
|
@ -49,16 +49,18 @@ ADDITIONAL_CFLAGS +=
|
|||
#ADDITIONAL_CFLAGS +=
|
||||
|
||||
# Additional include directories the compiler should search
|
||||
ADDITIONAL_INCLUDE_DIRS +=
|
||||
ADDITIONAL_INCLUDE_DIRS += -I../PCLib
|
||||
|
||||
# Additional LDFLAGS to pass to the linker
|
||||
ADDITIONAL_LDFLAGS += -lProjectCenter
|
||||
#ADDITIONAL_LDFLAGS +=
|
||||
|
||||
# Additional library directories the linker should search
|
||||
ADDITIONAL_LIB_DIRS +=
|
||||
ADDITIONAL_LIB_DIRS += -L../PCLib/$(GNUSTEP_OBJ_DIR)
|
||||
|
||||
ADDITIONAL_TOOL_LIBS +=
|
||||
|
||||
PCAppProj_BUNDLE_LIBS = -lProjectCenter
|
||||
|
||||
#
|
||||
# Flags dealing with installing and uninstalling
|
||||
#
|
||||
|
|
|
@ -26,7 +26,7 @@ include $(GNUSTEP_MAKEFILES)/common.make
|
|||
BUNDLE_NAME = PCBaseFileTypes
|
||||
BUNDLE_EXTENSION =.bundle
|
||||
PCBaseFileTypes_PRINCIPAL_CLASS = PCBaseFileType
|
||||
BUNDLE_INSTALL_DIR =$(GNUSTEP_LOCAL_ROOT)/Library/ProjectCenter/
|
||||
BUNDLE_INSTALL_DIR =$(GNUSTEP_INSTALLATION_DIR)/Library/ProjectCenter/
|
||||
|
||||
PCBaseFileTypes_OBJC_FILES = \
|
||||
PCBaseFileType.m
|
||||
|
|
|
@ -25,7 +25,7 @@ include $(GNUSTEP_MAKEFILES)/common.make
|
|||
|
||||
BUNDLE_NAME = PCBundleProj
|
||||
BUNDLE_EXTENSION =.bundle
|
||||
BUNDLE_INSTALL_DIR =$(GNUSTEP_LOCAL_ROOT)/Library/ProjectCenter/
|
||||
BUNDLE_INSTALL_DIR =$(GNUSTEP_INSTALLATION_DIR)/Library/ProjectCenter/
|
||||
|
||||
PCBundleProj_OBJC_FILES = \
|
||||
PCBundleProj.m \
|
||||
|
|
|
@ -49,16 +49,18 @@ ADDITIONAL_CFLAGS +=
|
|||
#ADDITIONAL_CFLAGS +=
|
||||
|
||||
# Additional include directories the compiler should search
|
||||
ADDITIONAL_INCLUDE_DIRS +=
|
||||
ADDITIONAL_INCLUDE_DIRS += -I../PCLib
|
||||
|
||||
# Additional LDFLAGS to pass to the linker
|
||||
ADDITIONAL_LDFLAGS += -lProjectCenter
|
||||
#ADDITIONAL_LDFLAGS +=
|
||||
|
||||
# Additional library directories the linker should search
|
||||
ADDITIONAL_LIB_DIRS +=
|
||||
ADDITIONAL_LIB_DIRS += -L../PCLib/$(GNUSTEP_OBJ_DIR)
|
||||
|
||||
ADDITIONAL_TOOL_LIBS +=
|
||||
|
||||
PCBundleProj_BUNDLE_LIBS = -lProjectCenter
|
||||
|
||||
#
|
||||
# Flags dealing with installing and uninstalling
|
||||
#
|
||||
|
|
|
@ -22,8 +22,7 @@
|
|||
# Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
#
|
||||
|
||||
# Install into the system root by default
|
||||
PCLIB_INSTALLATION_DIR = $(GNUSTEP_LOCAL_ROOT)
|
||||
PCLIB_INSTALLATION_DIR = $(GNUSTEP_INSTALLATION_DIR)
|
||||
GNUSTEP_MAKEFILES = $(GNUSTEP_SYSTEM_ROOT)/Makefiles
|
||||
|
||||
include $(GNUSTEP_MAKEFILES)/common.make
|
||||
|
@ -38,7 +37,7 @@ LIBRARY_VAR = PCLIB
|
|||
# The library to be compiled
|
||||
LIBRARY_NAME=libProjectCenter
|
||||
|
||||
PCLIB_INSTALL_PREFIX=$(GNUSTEP_LOCAL_ROOT)
|
||||
PCLIB_INSTALL_PREFIX=$(GNUSTEP_INSTALLATION_DIR)
|
||||
|
||||
# Grep for these names to build the legally-required "AUTHORS" file.
|
||||
FILE_AUTHORS = \
|
||||
|
@ -97,5 +96,4 @@ libProjectCenter_HEADER_FILES = $(libProjectCenter_HFILES)
|
|||
|
||||
include $(GNUSTEP_MAKEFILES)/library.make
|
||||
|
||||
|
||||
|
||||
-include GNUmakefile.postamble
|
||||
|
|
|
@ -58,7 +58,7 @@ ADDITIONAL_TOOL_LIBS +=
|
|||
#
|
||||
|
||||
# Additional directories to be created during installation
|
||||
ADDITIONAL_INSTALL_DIRS = $(PCLIB_INSTALL_PREFIX)/Headers/ProjectCenter
|
||||
#ADDITIONAL_INSTALL_DIRS = $(PCLIB_INSTALL_PREFIX)/Headers/ProjectCenter
|
||||
|
||||
#
|
||||
# Local configuration
|
||||
|
|
|
@ -25,7 +25,7 @@ include $(GNUSTEP_MAKEFILES)/common.make
|
|||
|
||||
BUNDLE_NAME = PCLibProj
|
||||
BUNDLE_EXTENSION=.bundle
|
||||
BUNDLE_INSTALL_DIR=$(GNUSTEP_LOCAL_ROOT)/Library/ProjectCenter/
|
||||
BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/ProjectCenter/
|
||||
|
||||
PCLibProj_OBJC_FILES = \
|
||||
PCLibProj.m \
|
||||
|
|
|
@ -49,13 +49,13 @@ ADDITIONAL_CFLAGS +=
|
|||
#ADDITIONAL_CFLAGS +=
|
||||
|
||||
# Additional include directories the compiler should search
|
||||
ADDITIONAL_INCLUDE_DIRS +=
|
||||
ADDITIONAL_INCLUDE_DIRS += -I../PCLib
|
||||
|
||||
# Additional LDFLAGS to pass to the linker
|
||||
ADDITIONAL_LDFLAGS +=
|
||||
|
||||
# Additional library directories the linker should search
|
||||
ADDITIONAL_LIB_DIRS +=
|
||||
ADDITIONAL_LIB_DIRS += -L../PCLib/$(GNUSTEP_OBJ_DIR)
|
||||
|
||||
ADDITIONAL_TOOL_LIBS +=
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ include $(GNUSTEP_MAKEFILES)/common.make
|
|||
|
||||
BUNDLE_NAME = PCToolProj
|
||||
BUNDLE_EXTENSION =.bundle
|
||||
BUNDLE_INSTALL_DIR =$(GNUSTEP_LOCAL_ROOT)/Library/ProjectCenter/
|
||||
BUNDLE_INSTALL_DIR =$(GNUSTEP_INSTALLATION_DIR)/Library/ProjectCenter/
|
||||
|
||||
PCToolProj_OBJC_FILES = \
|
||||
PCToolProj.m \
|
||||
|
|
|
@ -49,16 +49,18 @@ ADDITIONAL_CFLAGS +=
|
|||
#ADDITIONAL_CFLAGS +=
|
||||
|
||||
# Additional include directories the compiler should search
|
||||
ADDITIONAL_INCLUDE_DIRS +=
|
||||
ADDITIONAL_INCLUDE_DIRS += -I../PCLib
|
||||
|
||||
# Additional LDFLAGS to pass to the linker
|
||||
ADDITIONAL_LDFLAGS += -lProjectCenter
|
||||
#ADDITIONAL_LDFLAGS +=
|
||||
|
||||
# Additional library directories the linker should search
|
||||
ADDITIONAL_LIB_DIRS +=
|
||||
ADDITIONAL_LIB_DIRS += -L../PCLib/$(GNUSTEP_OBJ_DIR)
|
||||
|
||||
ADDITIONAL_TOOL_LIBS +=
|
||||
|
||||
PCToolProj_BUNLDE_LIBS = -lProjectCenter
|
||||
|
||||
#
|
||||
# Flags dealing with installing and uninstalling
|
||||
#
|
||||
|
|
|
@ -49,13 +49,13 @@ ADDITIONAL_CFLAGS +=
|
|||
#ADDITIONAL_CFLAGS +=
|
||||
|
||||
# Additional include directories the compiler should search
|
||||
ADDITIONAL_INCLUDE_DIRS +=
|
||||
ADDITIONAL_INCLUDE_DIRS += -I../PCLib
|
||||
|
||||
# Additional LDFLAGS to pass to the linker
|
||||
ADDITIONAL_LDFLAGS += -lProjectCenter
|
||||
#ADDITIONAL_LDFLAGS +=
|
||||
|
||||
# Additional library directories the linker should search
|
||||
ADDITIONAL_LIB_DIRS +=
|
||||
ADDITIONAL_LIB_DIRS += -L../PCLib/$(GNUSTEP_OBJ_DIR)
|
||||
|
||||
ADDITIONAL_TOOL_LIBS +=
|
||||
|
||||
|
|
Loading…
Reference in a new issue