-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
multi: Bump version to 0.12; update documentation
- Loading branch information
Showing
3 changed files
with
22 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 # | ||
############################################################################# | ||
|
@@ -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 | ||
|
@@ -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) | ||
|
@@ -71,7 +87,7 @@ ifeq ($(OS), sunos) | |
endif | ||
|
||
############################################################################# | ||
# Haiku OS Configuration # | ||
# Haiku OS Configuration # | ||
############################################################################# | ||
|
||
ifeq ($(OS), haiku) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |