Preparing for Git snapshot build bot and updated copyright header to reference full lifespan of Supermodel repo

This commit is contained in:
Bart Trzynadlowski 2022-06-23 12:34:02 -07:00
parent 3803d6b705
commit 8c8cc3d32b
9 changed files with 429 additions and 436 deletions

View file

@ -1,7 +1,7 @@
<!-- <!--
Supermodel Supermodel
A Sega Model 3 Arcade Emulator. A Sega Model 3 Arcade Emulator.
Copyright 2011-2017 Bart Trzynadlowski, Nik Henson, Ian Curtis Copyright 2003-2022 The Supermodel Team
Games.xml Games.xml

View file

@ -10,10 +10,10 @@
#### ####
A Sega Model 3 Arcade Emulator. A Sega Model 3 Arcade Emulator.
Copyright 2011 Bart Trzynadlowski, Nik Henson Copyright 2003-2022 The Supermodel Team
LICENSE AGREEMENT FOR SUPERMODEL VERSION 0.2A LICENSE AGREEMENT FOR SUPERMODEL
Supermodel is distributed as free software under the terms of the GNU General Supermodel is distributed as free software under the terms of the GNU General

View file

@ -10,7 +10,7 @@
#### ####
A Sega Model 3 Arcade Emulator. A Sega Model 3 Arcade Emulator.
Copyright 2011 Bart Trzynadlowski, Nik Henson Copyright 2003-2022 The Supermodel Team
USER MANUAL FOR SUPERMODEL VERSION 0.2A USER MANUAL FOR SUPERMODEL VERSION 0.2A

View file

@ -1,8 +1,7 @@
## ##
## Supermodel ## Supermodel
## A Sega Model 3 Arcade Emulator. ## A Sega Model 3 Arcade Emulator.
## Copyright 2011-2020 Bart Trzynadlowski, Nik Henson, Ian Curtis, ## Copyright 2003-2022 The Supermodel Team
## Harry Tuttle, and Spindizzi
## ##
## This file is part of Supermodel. ## This file is part of Supermodel.
## ##

View file

@ -1,8 +1,7 @@
## ##
## Supermodel ## Supermodel
## A Sega Model 3 Arcade Emulator. ## A Sega Model 3 Arcade Emulator.
## Copyright 2011-2020 Bart Trzynadlowski, Nik Henson, Ian Curtis, ## Copyright 2003-2022 The Supermodel Team
## Harry Tuttle, and Spindizzi
## ##
## This file is part of Supermodel. ## This file is part of Supermodel.
## ##

View file

@ -1,8 +1,7 @@
## ##
## Supermodel ## Supermodel
## A Sega Model 3 Arcade Emulator. ## A Sega Model 3 Arcade Emulator.
## Copyright 2011-2020 Bart Trzynadlowski, Nik Henson, Ian Curtis, ## Copyright 2003-2022 The Supermodel Team
## Harry Tuttle, and Spindizzi
## ##
## This file is part of Supermodel. ## This file is part of Supermodel.
## ##

View file

@ -1,8 +1,7 @@
## ##
## Supermodel ## Supermodel
## A Sega Model 3 Arcade Emulator. ## A Sega Model 3 Arcade Emulator.
## Copyright 2011-2020 Bart Trzynadlowski, Nik Henson, Ian Curtis, ## Copyright 2003-2022 The Supermodel Team
## Harry Tuttle, and Spindizzi
## ##
## This file is part of Supermodel. ## This file is part of Supermodel.
## ##

View file

@ -1,8 +1,7 @@
## ##
## Supermodel ## Supermodel
## A Sega Model 3 Arcade Emulator. ## A Sega Model 3 Arcade Emulator.
## Copyright 2011-2020 Bart Trzynadlowski, Nik Henson, Ian Curtis, ## Copyright 2003-2022 The Supermodel Team
## Harry Tuttle, and Spindizzi
## ##
## This file is part of Supermodel. ## This file is part of Supermodel.
## ##
@ -218,7 +217,7 @@ INCLUDE_DIRS = $(sort $(foreach file,$(SRC_FILES),$(dir $(file))))
all: $(BIN_DIR)/$(OUTFILE) all: $(BIN_DIR)/$(OUTFILE)
# #
# Release targets: used only to create official builds stamped with the SVN # Release targets: used only to create official builds stamped with the Git
# version number. Double-colon rules should force ordered execution. # version number. Double-colon rules should force ordered execution.
# The automated build script relies on these -- don't modify their output! # The automated build script relies on these -- don't modify their output!
# #
@ -230,7 +229,7 @@ release:: print_message
release:: clean release:: clean
release:: all release:: all
set_version: set_version:
$(eval VERSION = 0.3a-svn-$(shell svnversion --no-newline)) $(eval VERSION = $(subst ',,0.3a-git-$(shell git rev-parse --short HEAD --sq)))
$(eval SUPERMODEL_BUILD_FLAGS += -DSUPERMODEL_VERSION=\"$(VERSION)\") $(eval SUPERMODEL_BUILD_FLAGS += -DSUPERMODEL_VERSION=\"$(VERSION)\")
print_message: print_message:
$(info Building Supermodel Version $(VERSION)) $(info Building Supermodel Version $(VERSION))

View file

@ -1,8 +1,7 @@
/** /**
** Supermodel ** Supermodel
** A Sega Model 3 Arcade Emulator. ** A Sega Model 3 Arcade Emulator.
** Copyright 2011-2021 Bart Trzynadlowski, Nik Henson, Ian Curtis, ** Copyright 2003-2022 The Supermodel Team
** Harry Tuttle, and Spindizzi
** **
** This file is part of Supermodel. ** This file is part of Supermodel.
** **
@ -1497,8 +1496,7 @@ static Util::Config::Node DefaultConfig()
static void Title(void) static void Title(void)
{ {
puts("Supermodel: A Sega Model 3 Arcade Emulator (Version " SUPERMODEL_VERSION ")"); puts("Supermodel: A Sega Model 3 Arcade Emulator (Version " SUPERMODEL_VERSION ")");
puts("Copyright 2011-2022 by Bart Trzynadlowski, Nik Henson, Ian Curtis, Harry Tuttle,"); puts("Copyright 2003-2022 by The Supermodel Team");
puts(" Spindizzi, gm_mathew, and njz3\n");
} }
static void Help(void) static void Help(void)