From a839b5e1b42ccc20bc7a0960c79c6916415adffb Mon Sep 17 00:00:00 2001 From: Shamus Hammons Date: Sun, 7 Mar 2021 16:50:58 -0600 Subject: [PATCH] Update to the name (don't ask), and copyright dates. Now at v.1.7.0. --- makefile | 20 ++++++++++---------- rln.c | 8 ++++---- rln.h | 8 ++++---- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/makefile b/makefile index b70cc77..0c14fe6 100644 --- a/makefile +++ b/makefile @@ -1,5 +1,5 @@ # -# Makefile for Reboot's Linker for Jaguar +# Makefile for Renamed Linker for Jaguar # RM =/bin/rm -f CC = gcc @@ -21,18 +21,18 @@ endif endif CFLAGS = -g -I. -D$(SYSTYPE) -O2 -Wno-format -SRCS = rln.c +SRCS = rln.c OBJS = rln.o -.c.o: - $(RM) $@ - $(CROSS)$(CC) $(CFLAGS) -c $*.c +.c.o: + $(RM) $@ + $(CROSS)$(CC) $(CFLAGS) -c $*.c -all: $(PROGNAME) +all: $(PROGNAME) -$(PROGNAME) : $(OBJS) - $(CROSS)$(CC) $(CFLAGS) -o $(PROGNAME) $(OBJS) $(LIBS) +$(PROGNAME) : $(OBJS) + $(CROSS)$(CC) $(CFLAGS) -o $(PROGNAME) $(OBJS) $(LIBS) -clean: - $(RM) $(OBJS) $(PROGNAME) $(PROGNAME).exe *~ +clean: + $(RM) $(OBJS) $(PROGNAME) $(PROGNAME).exe *~ diff --git a/rln.c b/rln.c index a0b5ab0..e451f45 100644 --- a/rln.c +++ b/rln.c @@ -1,6 +1,6 @@ // -// RLN - Reboot's Linker for the Atari Jaguar console system -// Copyright (C) 199x, Allan K. Pratt, 2014-2018 Reboot & Friends +// RLN - Renamed Linker for the Atari Jaguar console system +// Copyright (C) 199x, Allan K. Pratt, 2014-2021 Reboot & Friends // #include "rln.h" @@ -3050,8 +3050,8 @@ void ShowVersion(void) "| '__| | '_ \\\n" "| | | | | | |\n" "|_| |_|_| |_|\n" - "\nReboot's Linker for Atari Jaguar\n" - "Copyright (c) 199x Allan K. Pratt, 2014-2018 Reboot\n" + "\nRenamed Linker for Atari Jaguar\n" + "Copyright (c) 199x Allan K. Pratt, 2014-2021 Reboot & Friends\n" "V%i.%i.%i %s (%s)\n\n", MAJOR, MINOR, PATCH, __DATE__, PLATFORM); } } diff --git a/rln.h b/rln.h index 75d6bb3..5b45bed 100644 --- a/rln.h +++ b/rln.h @@ -1,6 +1,6 @@ // -// RLN - Reboot's Linker for the Atari Jaguar console system -// Copyright (C) 199x Allan K. Pratt, 2011-2018 Reboot & Friends +// RLN - Renamed Linker for the Atari Jaguar console system +// Copyright (C) 199x Allan K. Pratt, 2011-2021 Reboot & Friends // #ifndef __RLN_H__ @@ -43,8 +43,8 @@ #endif #define MAJOR 1 // Major version number -#define MINOR 6 // Minor version number -#define PATCH 4 // Patch release number +#define MINOR 7 // Minor version number +#define PATCH 0 // Patch release number #ifdef WIN32 #define PLATFORM "Win32" // Release platform - Windows -- 2.37.2