Commit 28eebfef authored by Neil Bingham's avatar Neil Bingham
Browse files

Added FrontEnd resources to Makefile.

Detail:
  Added install: rule to Makefile to build FrontEnd UI.
Admin:
  Tested on RiscPC

Version 5.02. Not tagged
...@@ -14,3 +14,4 @@ ...@@ -14,3 +14,4 @@
| |
Dir <Obey$Dir> Dir <Obey$Dir>
amu_machine clean amu_machine clean
StripDepnd Makefile
| Copyright 1999 Pace Micro Technology plc
|
| Licensed under the Apache License, Version 2.0 (the "License");
| you may not use this file except in compliance with the License.
| You may obtain a copy of the License at
|
| http://www.apache.org/licenses/LICENSE-2.0
|
| Unless required by applicable law or agreed to in writing, software
| distributed under the License is distributed on an "AS IS" BASIS,
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
| See the License for the specific language governing permissions and
| limitations under the License.
|
Dir <Obey$Dir>
amu_machine install THROWBACK=-throwback INSTDIR=<install$dir>
...@@ -22,9 +22,12 @@ ...@@ -22,9 +22,12 @@
# 10-Feb-99 SNB Created. # 10-Feb-99 SNB Created.
# #
LIBDIR = ${INSTDIR}.Library.Acorn
INSTAPP = ${INSTDIR}.Apps.!Squeeze
# Generic options: # Generic options:
# #
MKDIR = cdir MKDIR = mkdir -p
AS = objasm AS = objasm
CP = copy CP = copy
CC = cc CC = cc
...@@ -106,4 +109,26 @@ ${ODIR}: ...@@ -106,4 +109,26 @@ ${ODIR}:
${MKDIR} o ${MKDIR} o
${TOUCH} $@ ${TOUCH} $@
install_tool: all
${CP} squeeze ${LIBDIR}.squeeze ${CPFLAGS}
${CP} xpand ${LIBDIR}.xpand ${CPFLAGS}
@echo ${COMPONENT}: tool and docs installed in library
install: install_tool install_dirs
${CP} LocalRes:!Boot ${INSTAPP}.!Boot ${CPFLAGS}
${CP} LocalRes:!Run ${INSTAPP}.!Run ${CPFLAGS}
${CP} LocalRes:!Help ${INSTAPP}.!Help ${CPFLAGS}
${CP} LocalRes:!Setup ${INSTAPP}.!Setup ${CPFLAGS}
${CP} LocalRes:!Sprites ${INSTAPP}.!Sprites ${CPFLAGS}
${CP} LocalRes:!Sprites22 ${INSTAPP}.!Sprites22 ${CPFLAGS}
${CP} LocalRes:Messages ${INSTAPP}.Messages ${CPFLAGS}
${CP} LocalRes:Templates ${INSTAPP}.Templates ${CPFLAGS}
${CC} -C++ -E >${INSTAPP}.Desc LocalRes:Desc
@echo ${COMPONENT}: FrontEnd app install in '${INSTAPP}'
install_dirs:
${MKDIR} ${INSTAPP}
${MKDIR} ${INSTAPP}
${MKDIR} ${LIBDIR}.Docs
# Dynamic dependencies: # Dynamic dependencies:
# This is a description of the wimp interface for squeeze #include "VersionNum"
tool_details_start tool_details_start
name "Squeeze"; name "Squeeze";
version "5.00"; version Module_MajorVersion;
wimpslot 32k; wimpslot 32k;
has_extended_cmdline; has_extended_cmdline;
tool_details_end tool_details_end
...@@ -24,8 +24,8 @@ fileoutput_end ...@@ -24,8 +24,8 @@ fileoutput_end
dbox_start dbox_start
icons_start icons_start
icn 3 maps_to string not_saved; icn 3 maps_to string not_saved;
icn 6 maps_to "-f"; # try harder to squeeze unpleasant things icn 6 maps_to "-f";
icn 7 maps_to "-v"; # verbose icn 7 maps_to "-v";
icons_end icons_end
defaults defaults
......
...@@ -5,11 +5,11 @@ ...@@ -5,11 +5,11 @@
*/ */
#define Module_MajorVersion_CMHG 5.02 #define Module_MajorVersion_CMHG 5.02
#define Module_MinorVersion_CMHG #define Module_MinorVersion_CMHG
#define Module_Date_CMHG 11 Jun 1999 #define Module_Date_CMHG 11 Nov 1999
#define Module_MajorVersion "5.02" #define Module_MajorVersion "5.02"
#define Module_Version 502 #define Module_Version 502
#define Module_MinorVersion "" #define Module_MinorVersion ""
#define Module_Date "11 Jun 1999" #define Module_Date "11 Nov 1999"
#define Module_FullVersion "5.02" #define Module_FullVersion "5.02"
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