mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 05:32:11 +00:00
Install Cocoa.h
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@22643 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
8b1400484b
commit
eef4cab916
4 changed files with 18 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2006-03-12 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/GNUmakefile, Source/GNUmakefile.preamble, Source/GNUmakefile.postamble:
|
||||
Install header file Cocoa.h.
|
||||
|
||||
2006-03-08 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/GSServicesManager.m: avoid use of deprecated method.
|
||||
|
|
|
@ -213,6 +213,9 @@ endif
|
|||
libgnustep-gui_HEADER_FILES_DIR = ../Headers/Additions/GNUstepGUI
|
||||
libgnustep-gui_HEADER_FILES_INSTALL_DIR = /GNUstepGUI
|
||||
|
||||
COCOA_HEADERS = \
|
||||
Cocoa.h
|
||||
|
||||
APPKIT_HEADERS = \
|
||||
AppKit.h \
|
||||
AppKitDefines.h \
|
||||
|
@ -380,7 +383,8 @@ GSPDFPrintOperation.h
|
|||
libgnustep-gui_HEADER_FILES = ${GUI_HEADERS}
|
||||
|
||||
HEADERS_INSTALL = ${APPKIT_HEADERS} \
|
||||
${GUI_HEADERS}
|
||||
${GUI_HEADERS} \
|
||||
${COCOA_HEADERS}
|
||||
|
||||
# Resources
|
||||
RESOURCE_SET_NAME = libgui-resources
|
||||
|
|
|
@ -58,6 +58,10 @@ after-install::
|
|||
for file in $(APPKIT_HEADERS); do \
|
||||
$(INSTALL_DATA) ../Headers/AppKit/$$file \
|
||||
$(GNUSTEP_HEADERS)/AppKit/$$file ; \
|
||||
done; \
|
||||
for file in $(COCOA_HEADERS); do \
|
||||
$(INSTALL_DATA) ../Headers/Cocoa/$$file \
|
||||
$(GNUSTEP_HEADERS)/Cocoa/$$file ; \
|
||||
done
|
||||
|
||||
#
|
||||
|
@ -68,6 +72,9 @@ after-install::
|
|||
after-uninstall::
|
||||
for file in $(APPKIT_HEADERS); do \
|
||||
rm -f $(GNUSTEP_HEADERS)/AppKit/$$file ; \
|
||||
done; \
|
||||
for file in $(COCOA_HEADERS); do \
|
||||
rm -f $(GNUSTEP_HEADERS)/Cocoa/$$file ; \
|
||||
done
|
||||
|
||||
# Things to do before cleaning
|
||||
|
|
|
@ -83,7 +83,7 @@ endif
|
|||
#
|
||||
|
||||
# Additional directories to be created during installation
|
||||
ADDITIONAL_INSTALL_DIRS = $(GNUSTEP_HEADERS)/AppKit
|
||||
ADDITIONAL_INSTALL_DIRS = $(GNUSTEP_HEADERS)/AppKit $(GNUSTEP_HEADERS)/Cocoa
|
||||
|
||||
# What are the libraries this library depends upon. This is needed for some
|
||||
# systems where building a shared library requires to pass to the linker
|
||||
|
|
Loading…
Reference in a new issue