Skip to content

Commit

Permalink
multi: Bump version to 0.12; update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsonjh committed Apr 8, 2021
1 parent 5321b38 commit 1266249
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 6 deletions.
24 changes: 20 additions & 4 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@
# Portable MINCE Makefile #
#############################################################################

# For most systems, no configuration should be needed. If you encounter any
# problems with any supported configuration, please report the bug at GitHub
# https://github.com/johnsonjh/pmince/issues/new/choose or send an e-mail to
# the maintainer, Jeffrey H. Johnson, at [email protected]. PGP mail accepted.

# For all supported platform types, running make (or gmake) should just work.
# There are some excpetions, such as Windows + Cygwin; see below for details.

# If you wish to change the terminal configuration, Tcl's "expect" is needed.
# Compile with: "ROWS=nn COLS=nn make". Values 8 - 254, inclusive, are valid.

# Some systems support creating packages. On these systems instructions will
# shown if the build proccess was successful. Also, some systems support UPX
# for binary conpression. UPX reduces the size of binary by ~90%, but causes
# an increase in memory usage, and may not be 100% reliable on all platforms.

#############################################################################
# Detect Operating System #
#############################################################################
Expand All @@ -12,11 +28,11 @@ ifndef $(OS)
true)
endif

# Override OS?
# Override OS? (Needed for Windows/Cygwin)
#OS=CYGW

#############################################################################
# Configuration #
# Common Configuration #
#############################################################################

PENV=/usr/bin/env
Expand All @@ -29,7 +45,7 @@ CFEXTRA=-pipe
# -fstack-protector-strong -D_FORTIFY_SOURCE=2

#############################################################################
# Microsoft Windows NT: MSYS2+Cygwin Configuration #
# Microsoft Windows NT: MSYS2+Cygwin Configuration #
#############################################################################

ifeq ($(OS), CYGW)
Expand Down Expand Up @@ -71,7 +87,7 @@ ifeq ($(OS), sunos)
endif

#############################################################################
# Haiku OS Configuration #
# Haiku OS Configuration #
#############################################################################

ifeq ($(OS), haiku)
Expand Down
2 changes: 1 addition & 1 deletion com.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ char *argv[];
strcat(linebuf,
" - Jeffrey H. Johnson <[email protected]>\r\n\nMINCE 2.6: "
"Copyright (C) 1980-1982 Mark of the Unicorn, Inc.\r\n\nCCOM80 "
"3.12: Adapted from COM 3.0, Copyright (C) 1984-2006\r\n Jim "
"3.15: Adapted from COM 3.0, Copyright (C) 1984-2006\r\n Jim "
"Cathey, Edmund Ramm, Charlie Gibbs, & Willi Kusche.\r\n");
write(1, linebuf, strlen(linebuf));
exit(0);
Expand Down
2 changes: 1 addition & 1 deletion version.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#ifndef VERSION
#define VERSION "0.11"
#define VERSION "0.12"
#endif

0 comments on commit 1266249

Please sign in to comment.