Commit 5dc65503 authored by Ben Avison's avatar Ben Avison Committed by ROOL
Browse files

Make all #includes relative to the including file

This allows <Lib$Dir>.tboxlibint to be removed from our command line include
path. Henceforth, clients of this library also won't need to put it (or
C:tboxlibint) in their command line include paths either. It also means that
when building the library, only local copies of header files are used (as
opposed to a mixture of local and exported copies, as previously).

Version 0.28. Tagged as 'tboxlib-0_28'
parent facc059b
......@@ -63,7 +63,7 @@ ABSSYM = RISC_OSLib:o.AbsSym
#
# Include files
#
INCLUDES = -IC:,<Lib$Dir>.tboxlibint.
INCLUDES = -IC:
DFLAGS =
# Program specific options:
......
/* (0.27)
/* (0.28)
*
* This file is automatically maintained by srccommit, do not edit manually.
*
*/
#define Module_MajorVersion_CMHG 0.27
#define Module_MajorVersion_CMHG 0.28
#define Module_MinorVersion_CMHG
#define Module_Date_CMHG 07 Jun 2021
#define Module_Date_CMHG 25 Jan 2023
#define Module_MajorVersion "0.27"
#define Module_Version 27
#define Module_MajorVersion "0.28"
#define Module_Version 28
#define Module_MinorVersion ""
#define Module_Date "07 Jun 2021"
#define Module_Date "25 Jan 2023"
#define Module_ApplicationDate "07-Jun-21"
#define Module_ApplicationDate "25-Jan-23"
#define Module_ComponentName "tboxlib"
#define Module_FullVersion "0.27"
#define Module_HelpVersion "0.27 (07 Jun 2021)"
#define Module_LibraryVersionInfo "0:27"
#define Module_FullVersion "0.28"
#define Module_HelpVersion "0.28 (25 Jan 2023)"
#define Module_LibraryVersionInfo "0:28"
......@@ -23,7 +23,7 @@
#ifndef __DCS_h
#define __DCS_h
#include "objects/window.h"
#include "window.h"
/* ----------------------------------------- DCS templates ----------------------------------------- */
......
......@@ -24,7 +24,7 @@
#define __Quit_h
#ifndef __toolbox_h
#include "objects/toolbox.h"
#include "toolbox.h"
#endif
......
......@@ -23,15 +23,15 @@
#define __ColourDbox_h
#ifndef __os_h
#include "os.h"
#include "../os.h"
#endif
#ifndef __window_h
#include "objects/window.h"
#include "window.h"
#endif
#ifndef __wimp_h
#include "twimp.h"
#include "../twimp.h"
#endif
/* ColourDbox Templates **************************************************************************/
......
......@@ -23,7 +23,7 @@
#define __colourmenu_h
#ifndef __toolbox_h
#include "objects/toolbox.h"
#include "toolbox.h"
#endif
/* Colour Menu Templates ************************************************************************/
......
......@@ -23,15 +23,15 @@
#define __FileInfo_h
#ifndef __os_h
#include "os.h"
#include "../os.h"
#endif
#ifndef __window_h
#include "objects/window.h"
#include "window.h"
#endif
#ifndef __wimp_h
#include "twimp.h"
#include "../twimp.h"
#endif
......
......@@ -23,15 +23,15 @@
#define __FontDbox_h
#ifndef __os_h
#include "os.h"
#include "../os.h"
#endif
#ifndef __window_h
#include "objects/window.h"
#include "window.h"
#endif
#ifndef __wimp_h
#include "twimp.h"
#include "../twimp.h"
#endif
/* FontDbox SWI calls *******************************************************************************/
......
......@@ -23,7 +23,7 @@
#define __fontmenu_h
#ifndef __toolbox_h
#include "objects/toolbox.h"
#include "toolbox.h"
#endif
......
......@@ -21,11 +21,11 @@
#define __gadgets_h
#ifndef __toolbox_h
#include "objects/toolbox.h"
#include "toolbox.h"
#endif
#ifndef __window_h
#include "objects/window.h"
#include "window.h"
#endif
/* Gadgets SWI calls ****************************************************************************/
......
......@@ -25,7 +25,7 @@
#ifndef __toolbox_h
#include "objects/toolbox.h"
#include "toolbox.h"
#endif
......
......@@ -23,7 +23,7 @@
#define __menu_h
#ifndef __toolbox_h
#include "objects/toolbox.h"
#include "toolbox.h"
#endif
......
......@@ -23,15 +23,15 @@
#define __PrintDbox_h
#ifndef __os_h
#include "os.h"
#include "../os.h"
#endif
#ifndef __window_h
#include "objects/window.h"
#include "window.h"
#endif
#ifndef __wimp_h
#include "twimp.h"
#include "../twimp.h"
#endif
/* PrintDbox SWI calls ****************************************************************************/
......
......@@ -24,15 +24,15 @@
#define __ProgInfo_h
#ifndef __os_h
#include "os.h"
#include "../os.h"
#endif
#ifndef __window_h
#include "objects/window.h"
#include "window.h"
#endif
#ifndef __wimp_h
#include "twimp.h"
#include "../twimp.h"
#endif
/* ProgInfo SWI calls ****************************************************************************/
......
......@@ -23,15 +23,15 @@
#define __SaveAs_h
#ifndef __os_h
#include "os.h"
#include "../os.h"
#endif
#ifndef __window_h
#include "objects/window.h"
#include "window.h"
#endif
#ifndef __wimp_h
#include "twimp.h"
#include "../twimp.h"
#endif
/* SaveAs SWI calls *******************************************************************************/
......
......@@ -23,15 +23,15 @@
#define __Scale_h
#ifndef __os_h
#include "os.h"
#include "../os.h"
#endif
#ifndef __window_h
#include "objects/window.h"
#include "window.h"
#endif
#ifndef __wimp_h
#include "twimp.h"
#include "../twimp.h"
#endif
/* Scale SWI calls *******************************************************************************/
......
......@@ -29,11 +29,11 @@
#define __window_h
#ifndef __wimp_h
#include "twimp.h"
#include "../twimp.h"
#endif
#ifndef __toolbox_h
#include "objects/toolbox.h"
#include "toolbox.h"
#endif
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment