mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-03-17 16:12:17 +00:00
Fixed a bug in the app makefile creation
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@13751 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
e6ce7b3293
commit
324a187f3e
3 changed files with 8 additions and 9 deletions
|
@ -9,11 +9,14 @@
|
|||
#
|
||||
|
||||
include $(GNUSTEP_MAKEFILES)/common.make
|
||||
#
|
||||
|
||||
|
||||
#
|
||||
# Subprojects
|
||||
#
|
||||
|
||||
|
||||
|
||||
#
|
||||
# Bundle
|
||||
#
|
||||
|
@ -21,17 +24,17 @@ include $(GNUSTEP_MAKEFILES)/common.make
|
|||
PACKAGE_NAME=PCAppProj
|
||||
BUNDLE_NAME=PCAppProj
|
||||
BUNDLE_EXTENSION=.bundle
|
||||
BUNDLE_INSTALL_DIR=$(GNUSTEP_SYSTEM_ROOT)/Library/ProjectCenter
|
||||
BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/ProjectCenter
|
||||
PCAppProj_PRINCIPAL_CLASS=PCAppProj
|
||||
#
|
||||
|
||||
|
||||
#
|
||||
# Additional libraries
|
||||
#
|
||||
|
||||
PCAppProj_LIBRARIES_DEPEND_UPON += -lProjectCenter
|
||||
|
||||
#
|
||||
|
||||
# Resource files
|
||||
#
|
||||
|
||||
|
@ -43,7 +46,6 @@ main.m \
|
|||
PC.proj
|
||||
|
||||
#
|
||||
|
||||
# Header files
|
||||
#
|
||||
|
||||
|
@ -52,7 +54,6 @@ PCAppProj.h \
|
|||
PCAppProject.h
|
||||
|
||||
#
|
||||
|
||||
# Class files
|
||||
#
|
||||
|
||||
|
@ -61,7 +62,6 @@ PCAppProj.m \
|
|||
PCAppProject.m
|
||||
|
||||
#
|
||||
|
||||
# C files
|
||||
#
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
);
|
||||
IMAGES = (
|
||||
);
|
||||
INSTALLDIR = "$(GNUSTEP_SYSTEM_ROOT)/Library/ProjectCenter";
|
||||
INSTALLDIR = "$(GNUSTEP_INSTALLATION_DIR)/Library/ProjectCenter";
|
||||
INTERFACES = (
|
||||
);
|
||||
LANGUAGE = English;
|
||||
|
|
|
@ -177,7 +177,6 @@
|
|||
[mf appendSubprojects:[dict objectForKey:PCSubprojects]];
|
||||
|
||||
[mf appendApplication];
|
||||
[mf appendInstallDir:[dict objectForKey:PCInstallDir]];
|
||||
[mf appendAppIcon:[dict objectForKey:PCAppIcon]];
|
||||
[mf appendGuiLibraries:[dict objectForKey:PCLibraries]];
|
||||
|
||||
|
|
Loading…
Reference in a new issue