mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 19:01:15 +00:00
Merge a50d0291dc
into 4faee2de0b
This commit is contained in:
commit
caad2c6ca3
10 changed files with 590 additions and 1 deletions
6
TextConverters/DOCX/.cvsignore
Normal file
6
TextConverters/DOCX/.cvsignore
Normal file
|
@ -0,0 +1,6 @@
|
|||
*obj
|
||||
*.app
|
||||
*.debug
|
||||
*.profile
|
||||
.gdbinit
|
||||
*.bundle
|
51
TextConverters/DOCX/DOCXConsumer.h
Normal file
51
TextConverters/DOCX/DOCXConsumer.h
Normal file
|
@ -0,0 +1,51 @@
|
|||
/* docxConsumer.h created by gcasa Feb-2025
|
||||
|
||||
Copyright (C) 2025 Free Software Foundation, Inc.
|
||||
|
||||
Author: Gregory John Casamento <greg.casamento@gmail.com>
|
||||
Date: Feb 2025
|
||||
|
||||
This file is part of the GNUstep GUI Library.
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; see the file COPYING.LIB.
|
||||
If not, see <http://www.gnu.org/licenses/> or write to the
|
||||
Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef _docxConsumer_h_INCLUDE
|
||||
#define _docxConsumer_h_INCLUDE
|
||||
|
||||
#include <GNUstepGUI/GSTextConverter.h>
|
||||
|
||||
@class NSMutableDictionary;
|
||||
@class NSMutableArray;
|
||||
@class NSMutableAttributedString;
|
||||
|
||||
@interface DOCXConsumer: NSObject <GSTextConsumer>
|
||||
{
|
||||
@public
|
||||
NSStringEncoding encoding;
|
||||
NSMutableDictionary *documentAttributes;
|
||||
NSMutableDictionary *fonts;
|
||||
NSMutableArray *colours;
|
||||
NSMutableArray *attrs;
|
||||
NSMutableAttributedString *result;
|
||||
Class _class;
|
||||
int ignore;
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
#endif
|
94
TextConverters/DOCX/DOCXConsumer.m
Normal file
94
TextConverters/DOCX/DOCXConsumer.m
Normal file
|
@ -0,0 +1,94 @@
|
|||
/* attributedStringConsumer.m
|
||||
|
||||
Copyright (C) 1999 Free Software Foundation, Inc.
|
||||
|
||||
Author: Stefan Böhringer (stefan.boehringer@uni-bochum.de)
|
||||
Date: Dec 1999
|
||||
Author: Fred Kiefer <FredKiefer@gmx.de>
|
||||
Date: June 2000
|
||||
|
||||
This file is part of the GNUstep GUI Library.
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; see the file COPYING.LIB.
|
||||
If not, see <http://www.gnu.org/licenses/> or write to the
|
||||
Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
#import <GNUstepGUI/GSHelpAttachment.h>
|
||||
|
||||
#import "DOCXConsumer.h"
|
||||
// #import "DOCXConsumerFunctions.h"
|
||||
#import "DOCXProducer.h"
|
||||
|
||||
@implementation DOCXConsumer
|
||||
|
||||
/* RTFConsumer is the principal class and thus implements this */
|
||||
+ (Class) classForFormat: (NSString *)format producer: (BOOL)flag
|
||||
{
|
||||
Class cClass = Nil;
|
||||
|
||||
return cClass;
|
||||
}
|
||||
|
||||
+ (NSAttributedString*) parseFile: (NSFileWrapper *)wrapper
|
||||
options: (NSDictionary *)options
|
||||
documentAttributes: (NSDictionary **)dict
|
||||
error: (NSError **)error
|
||||
class: (Class)class
|
||||
{
|
||||
NSAttributedString *text = nil;
|
||||
|
||||
return text;
|
||||
}
|
||||
|
||||
+ (NSAttributedString*) parseData: (NSData *)rtfData
|
||||
options: (NSDictionary *)options
|
||||
documentAttributes: (NSDictionary **)dict
|
||||
error: (NSError **)error
|
||||
class: (Class)class
|
||||
{
|
||||
// DOCXConsumer *consumer = [DOCXConsumer new];
|
||||
NSAttributedString *text = nil;
|
||||
|
||||
return text;
|
||||
}
|
||||
|
||||
- (id) init
|
||||
{
|
||||
ignore = 0;
|
||||
result = nil;
|
||||
encoding = NSISOLatin1StringEncoding;
|
||||
documentAttributes = nil;
|
||||
fonts = nil;
|
||||
attrs = nil;
|
||||
colours = nil;
|
||||
_class = Nil;
|
||||
|
||||
return self;
|
||||
}
|
||||
|
||||
- (void) dealloc
|
||||
{
|
||||
RELEASE(fonts);
|
||||
RELEASE(attrs);
|
||||
RELEASE(colours);
|
||||
RELEASE(result);
|
||||
RELEASE(documentAttributes);
|
||||
[super dealloc];
|
||||
}
|
||||
|
||||
@end
|
159
TextConverters/DOCX/DOCXConsumerFunctions.h
Normal file
159
TextConverters/DOCX/DOCXConsumerFunctions.h
Normal file
|
@ -0,0 +1,159 @@
|
|||
/* docxConsumerFunctions.h created by pingu on Wed 17-Nov-1999
|
||||
|
||||
Copyright (C) 1999 Free Software Foundation, Inc.
|
||||
|
||||
Author: Stefan Böhringer (stefan.boehringer@uni-bochum.de)
|
||||
Date: Dec 1999
|
||||
|
||||
This file is part of the GNUstep GUI Library.
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; see the file COPYING.LIB.
|
||||
If not, see <http://www.gnu.org/licenses/> or write to the
|
||||
Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
/* here we define the interface functions to grammer consumers */
|
||||
|
||||
#ifndef docxConsumerFunctions_h_INCLUDE
|
||||
#define docxConsumerFunctions_h_INCLUDE
|
||||
|
||||
#include "docxScanner.h"
|
||||
|
||||
/* general statements:
|
||||
* measurement is usually in twips: one twentieth of a point (this is
|
||||
* about 0.01764 mm) a tabstop of 540 twips (as it occurs on NeXT) is
|
||||
* therefore about 0.95 cm
|
||||
*/
|
||||
#define halfpoints2points(a) ((a)/2.0)
|
||||
#define twips2points(a) ((a)/20.0)
|
||||
#define twips2mm(a) ((a)*0.01764)
|
||||
|
||||
/* prepare the ctxt, or whatever you want */
|
||||
void GSDOCXstart(void *ctxt);
|
||||
|
||||
/* seal the parsing process, the context or whatever you want */
|
||||
void GSDOCXstop(void *ctxt);
|
||||
|
||||
/* */
|
||||
int GSDOCXgetPosition(void *ctxt);
|
||||
|
||||
/*
|
||||
* those pairing functions enclose DOCXBlocks. Use it to capture the
|
||||
* hierarchical attribute changes of blocks. i.e. attributes of a
|
||||
* block are forgotten once a block is closed
|
||||
*/
|
||||
void GSDOCXopenBlock(void *ctxt, BOOL ignore);
|
||||
void GSDOCXcloseBlock(void *ctxt, BOOL ignore);
|
||||
|
||||
/* handle errors */
|
||||
void GSDOCXerror(void *ctxt, void *lctxt, const char *msg);
|
||||
|
||||
/* handle docx commands not expicated in the grammer */
|
||||
void GSDOCXgenericDOCXcommand(void *ctxt, DOCXcmd cmd);
|
||||
|
||||
/* go, handle text */
|
||||
void GSDOCXmangleText(void *ctxt, const char *text);
|
||||
void GSDOCXunicode (void *ctxt, int uchar);
|
||||
|
||||
/*
|
||||
* font functions
|
||||
*/
|
||||
|
||||
/* get noticed that a particular font is introduced */
|
||||
void GSDOCXregisterFont(void *ctxt, const char *fontName,
|
||||
DOCXfontFamily family, int fontNumber);
|
||||
|
||||
/* change font number */
|
||||
void GSDOCXfontNumber(void *ctxt, int fontNumber);
|
||||
/* change font size in half points*/
|
||||
void GSDOCXfontSize(void *ctxt, int fontSize);
|
||||
|
||||
/* set paper width in twips */
|
||||
void GSDOCXpaperWidth(void *ctxt, int width);
|
||||
/* set paper height in twips */
|
||||
void GSDOCXpaperHeight(void *ctxt, int height);
|
||||
/* set left margin in twips */
|
||||
void GSDOCXmarginLeft(void *ctxt, int margin);
|
||||
/* set right margin in twips */
|
||||
void GSDOCXmarginRight(void *ctxt, int margin);
|
||||
/* set top margin in twips */
|
||||
void GSDOCXmarginTop(void *ctxt, int margin);
|
||||
/* set buttom margin in twips */
|
||||
void GSDOCXmarginButtom(void *ctxt, int margin);
|
||||
/* set first line indent */
|
||||
void GSDOCXfirstLineIndent(void *ctxt, int indent);
|
||||
/* set left indent */
|
||||
void GSDOCXleftIndent(void *ctxt, int indent);
|
||||
/* set right indent */
|
||||
void GSDOCXrightIndent(void *ctxt, int indent);
|
||||
/* set tabstop */
|
||||
void GSDOCXtabstop(void *ctxt, int location);
|
||||
/* set center alignment */
|
||||
void GSDOCXalignCenter(void *ctxt);
|
||||
/* set justified alignment */
|
||||
void GSDOCXalignJustified(void *ctxt);
|
||||
/* set left alignment */
|
||||
void GSDOCXalignLeft(void *ctxt);
|
||||
/* set right alignment */
|
||||
void GSDOCXalignRight(void *ctxt);
|
||||
/* set space above */
|
||||
void GSDOCXspaceAbove(void *ctxt, int location);
|
||||
/* set line space */
|
||||
void GSDOCXlineSpace(void *ctxt, int location);
|
||||
/* set default paragraph style */
|
||||
void GSDOCXdefaultParagraph(void *ctxt);
|
||||
/* set paragraph style */
|
||||
void GSDOCXstyle(void *ctxt, int style);
|
||||
/* Add a colour to the colour table*/
|
||||
void GSDOCXaddColor(void *ctxt, int red, int green, int blue);
|
||||
/* Add the default colour to the colour table*/
|
||||
void GSDOCXaddDefaultColor(void *ctxt);
|
||||
/* set background colour */
|
||||
void GSDOCXcolorbg(void *ctxt, int color);
|
||||
/* set foreground colour */
|
||||
void GSDOCXcolorfg(void *ctxt, int color);
|
||||
/* set underline colour */
|
||||
void GSDOCXunderlinecolor(void *ctxt, int color);
|
||||
/* set default character style */
|
||||
void GSDOCXdefaultCharacterStyle(void *ctxt);
|
||||
/* set subscript in half points */
|
||||
void GSDOCXsubscript(void *ctxt, int script);
|
||||
/* set superscript in half points */
|
||||
void GSDOCXsuperscript(void *ctxt, int script);
|
||||
/* Switch bold mode on or off */
|
||||
void GSDOCXbold(void *ctxt, BOOL on);
|
||||
/* Switch italic mode on or off */
|
||||
void GSDOCXitalic(void *ctxt, BOOL on);
|
||||
/* Set the underline style */
|
||||
void GSDOCXunderline(void *ctxt, BOOL on, NSInteger style);
|
||||
/* Set the strikethrough style */
|
||||
void GSDOCXstrikethrough(void *ctxt, NSInteger style);
|
||||
/* new paragraph */
|
||||
void GSDOCXparagraph(void *ctxt);
|
||||
/* NeXTGraphic */
|
||||
void GSDOCXNeXTGraphic(void *ctxt, const char *fileName, int width, int height);
|
||||
/* NeXTHelpLink */
|
||||
void GSDOCXNeXTHelpLink(void *ctxt, int num, const char *markername,
|
||||
const char *linkFilename, const char *linkMarkername);
|
||||
/* NeXTHelpMarker */
|
||||
void GSDOCXNeXTHelpMarker(void *ctxt, int num, const char *markername);
|
||||
|
||||
void GSDOCXaddField (void *ctxt, int start, const char *inst);
|
||||
|
||||
/* set encoding */
|
||||
void GSDOCXencoding(void *ctxt, int encoding);
|
||||
|
||||
#endif
|
||||
|
63
TextConverters/DOCX/DOCXProducer.h
Normal file
63
TextConverters/DOCX/DOCXProducer.h
Normal file
|
@ -0,0 +1,63 @@
|
|||
/*
|
||||
DOCXProducer.h
|
||||
|
||||
Writes out a NSAttributedString as DOCX
|
||||
|
||||
Copyright (C) 2025 Free Software Foundation, Inc.
|
||||
|
||||
Author: Gregory John Casamento <greg.casamento@gmail.com>
|
||||
Date: Feb 2025
|
||||
|
||||
This file is part of the GNUstep GUI Library.
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; see the file COPYING.LIB.
|
||||
If not, see <http://www.gnu.org/licenses/> or write to the
|
||||
Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef _GNUstep_H_DOCXProducer
|
||||
#define _GNUstep_H_DOCXProducer
|
||||
|
||||
#include <GNUstepGUI/GSTextConverter.h>
|
||||
|
||||
@class NSAttributedString;
|
||||
@class NSMutableDictionary;
|
||||
@class NSColor;
|
||||
@class NSFont;
|
||||
@class NSMutableParagraphStyle;
|
||||
|
||||
@interface DOCXProducer: NSObject <GSTextProducer>
|
||||
{
|
||||
@public
|
||||
NSAttributedString *text;
|
||||
NSMutableDictionary *fontDict;
|
||||
NSMutableDictionary *colorDict;
|
||||
NSDictionary *docDict;
|
||||
NSMutableArray *attachments;
|
||||
|
||||
NSColor *fgColor;
|
||||
NSColor *bgColor;
|
||||
NSColor *ulColor;
|
||||
|
||||
NSDictionary *_attributesOfLastRun; /*" holds the attributes of the last run
|
||||
to build the delta "*/
|
||||
|
||||
BOOL _inlineGraphics; /*" Indicates if graphics should be inlined. "*/
|
||||
int unnamedAttachmentCounter; /*" Count the number of unnamed attachments so we can name them uniquely "*/
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
#endif
|
65
TextConverters/DOCX/DOCXProducer.m
Normal file
65
TextConverters/DOCX/DOCXProducer.m
Normal file
|
@ -0,0 +1,65 @@
|
|||
/*
|
||||
DOCXProducer.m
|
||||
|
||||
Writes out a NSAttributedString as DOCX
|
||||
|
||||
Copyright (C) 2025 Free Software Foundation, Inc.
|
||||
|
||||
Author: Gregory John Casamento <greg.casamento@gmail.com>
|
||||
Date: Feb 2025
|
||||
|
||||
This file is part of the GNUstep GUI Library.
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; see the file COPYING.LIB.
|
||||
If not, see <http://www.gnu.org/licenses/> or write to the
|
||||
Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
#import <Foundation/Foundation.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
#import <GNUstepGUI/GSHelpAttachment.h>
|
||||
|
||||
#import "DOCXProducer.h"
|
||||
|
||||
@implementation DOCXProducer
|
||||
|
||||
+ (NSFileWrapper *)produceFileFrom: (NSAttributedString *)aText
|
||||
documentAttributes: (NSDictionary *)dict
|
||||
error: (NSError **)error
|
||||
{
|
||||
// Implement code that converts the attributed string to DOCX...
|
||||
return nil; // AUTORELEASE(wrapper);
|
||||
}
|
||||
|
||||
+ (NSData *)produceDataFrom: (NSAttributedString *)aText
|
||||
documentAttributes: (NSDictionary *)dict
|
||||
error: (NSError **)error
|
||||
{
|
||||
return [[self produceFileFrom: aText
|
||||
documentAttributes: dict
|
||||
error: error] serializedRepresentation];
|
||||
}
|
||||
|
||||
- (id)init
|
||||
{
|
||||
// Initialize...
|
||||
return self;
|
||||
}
|
||||
|
||||
- (void)dealloc
|
||||
{
|
||||
[super dealloc];
|
||||
}
|
||||
|
||||
@end
|
47
TextConverters/DOCX/GNUmakefile
Normal file
47
TextConverters/DOCX/GNUmakefile
Normal file
|
@ -0,0 +1,47 @@
|
|||
# GNUmakefile
|
||||
#
|
||||
# Copyright (C) 2001 Free Software Foundation, Inc.
|
||||
#
|
||||
# Author: Adam Fedor <fedor@gnu.org>
|
||||
#
|
||||
# This file is part of GNUstep
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU Lesser General Public
|
||||
# License as published by the Free Software Foundation; either
|
||||
# version 2 of the License, or (at your option) any later version.
|
||||
#
|
||||
# This library is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# Lesser General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public
|
||||
# License along with this library; see the file COPYING.LIB.
|
||||
# If not, see <http://www.gnu.org/licenses/> or write to the
|
||||
# Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
||||
# Boston, MA 02110-1301, USA.
|
||||
|
||||
PACKAGE_NAME = gnustep-gui
|
||||
include $(GNUSTEP_MAKEFILES)/common.make
|
||||
|
||||
BUNDLE_NAME = DOCXConverter
|
||||
BUNDLE_INSTALL_DIR =$(GNUSTEP_BUNDLES)/TextConverters
|
||||
|
||||
DOCXConverter_OBJC_FILES = DOCXConsumer.m DOCXProducer.m
|
||||
|
||||
DOCXConverter_PRINCIPAL_CLASS = DOCXConsumer
|
||||
|
||||
ifeq ($(GNUSTEP_TARGET_OS),mingw32)
|
||||
DOCXConverter_BUNDLE_LIBS += -lgnustep-gui $(FND_LIBS) $(OBJC_LIBS)
|
||||
endif
|
||||
ifeq ($(GNUSTEP_TARGET_OS),cygwin)
|
||||
DOCXConverter_BUNDLE_LIBS += -lgnustep-gui $(FND_LIBS) $(OBJC_LIBS)
|
||||
endif
|
||||
|
||||
-include GNUmakefile.preamble
|
||||
|
||||
include $(GNUSTEP_MAKEFILES)/bundle.make
|
||||
|
||||
-include GNUmakefile.postamble
|
||||
|
31
TextConverters/DOCX/GNUmakefile.postamble
Normal file
31
TextConverters/DOCX/GNUmakefile.postamble
Normal file
|
@ -0,0 +1,31 @@
|
|||
# GNUmakefile.postamble
|
||||
#
|
||||
# Copyright (C) 2001 Free Software Foundation, Inc.
|
||||
#
|
||||
# Author: Philippe C.D. Robert <prh@3dkit.org>
|
||||
#
|
||||
# This file is part of GNUstep
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU Lesser General Public
|
||||
# License as published by the Free Software Foundation; either
|
||||
# version 2 of the License, or (at your option) any later version.
|
||||
#
|
||||
# This library is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# Lesser General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public
|
||||
# License along with this library; see the file COPYING.LIB.
|
||||
# If not, see <http://www.gnu.org/licenses/> or write to the
|
||||
# Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
||||
# Boston, MA 02110-1301, USA.
|
||||
|
||||
BISON_FLAGS = -p GSRTF --output=rtfGrammar.tab.m --defines=rtfGrammar.tab.h
|
||||
BISON = BISON_SIMPLE=bison.simple bison
|
||||
|
||||
# Rule not enabled because not every system has bison installed...
|
||||
# FIXME add configure check for bison?
|
||||
#rtfGrammar.tab.m: rtfGrammar.y
|
||||
# $(BISON) $(BISON_FLAGS) $<
|
73
TextConverters/DOCX/GNUmakefile.preamble
Normal file
73
TextConverters/DOCX/GNUmakefile.preamble
Normal file
|
@ -0,0 +1,73 @@
|
|||
# GNUmakefile.preamble
|
||||
#
|
||||
# Copyright (C) 2001 Free Software Foundation, Inc.
|
||||
#
|
||||
# Author: Philippe C.D. Robert <prh@3dkit.org>
|
||||
#
|
||||
# This file is part of GNUstep
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU Lesser General Public
|
||||
# License as published by the Free Software Foundation; either
|
||||
# version 2 of the License, or (at your option) any later version.
|
||||
#
|
||||
# This library is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# Lesser General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public
|
||||
# License along with this library; see the file COPYING.LIB.
|
||||
# If not, see <http://www.gnu.org/licenses/> or write to the
|
||||
# Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
||||
# Boston, MA 02110-1301, USA.
|
||||
|
||||
#
|
||||
# Makefile.preamble
|
||||
#
|
||||
# Project specific makefile variables, and additional
|
||||
#
|
||||
# Do not put any Makefile rules in this file, instead they should
|
||||
# be put into Makefile.postamble.
|
||||
#
|
||||
|
||||
#
|
||||
# Flags dealing with compiling and linking
|
||||
#
|
||||
|
||||
# Additional flags to pass to the preprocessor
|
||||
ADDITIONAL_CPPFLAGS += -Wall
|
||||
|
||||
# Additional flags to pass to the Objective-C compiler
|
||||
ADDITIONAL_OBJCFLAGS +=
|
||||
|
||||
# Additional flags to pass to the C compiler
|
||||
ADDITIONAL_CFLAGS +=
|
||||
#ADDITIONAL_CFLAGS +=
|
||||
|
||||
# Additional include directories the compiler should search
|
||||
ADDITIONAL_INCLUDE_DIRS +=-I../../Headers/Additions -I../../Headers
|
||||
|
||||
# Additional LDFLAGS to pass to the linker
|
||||
#ADDITIONAL_LDFLAGS +=
|
||||
|
||||
# Additional library directories the linker should search
|
||||
ADDITIONAL_LIB_DIRS += -L../../Source/$(GNUSTEP_OBJ_DIR)
|
||||
|
||||
#ADDITIONAL_TOOL_LIBS +=
|
||||
|
||||
RTFConverter_BUNDLE_LIBS += -lgnustep-gui
|
||||
|
||||
#
|
||||
# Flags dealing with installing and uninstalling
|
||||
#
|
||||
|
||||
# Additional directories to be created during installation
|
||||
#ADDITIONAL_INSTALL_DIRS +=
|
||||
|
||||
#
|
||||
# Local configuration
|
||||
#
|
||||
|
||||
|
||||
|
|
@ -28,6 +28,6 @@ include $(GNUSTEP_MAKEFILES)/common.make
|
|||
#
|
||||
# The list of subproject directories
|
||||
#
|
||||
SUBPROJECTS = RTF
|
||||
SUBPROJECTS = RTF DOCX
|
||||
|
||||
include $(GNUSTEP_MAKEFILES)/aggregate.make
|
||||
|
|
Loading…
Reference in a new issue