-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmakefile.config.mk
More file actions
80 lines (67 loc) · 2.49 KB
/
makefile.config.mk
File metadata and controls
80 lines (67 loc) · 2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# This file is part of the `youdirk_numeric_io` Minecraft mod
# Copyright (C) 2019 Dirk "YouDirk" Lehmann
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
# ********************************************************************
# Configuration
# (optional) JAVA_HOME path, if not automatically detected
JDK_PATH =
# YouDirk Numeric I/O Version (without Minecraft Version)
# Take a look to the conventions for versioning
# <https://mcforge.readthedocs.io/en/latest/conventions/versioning/>
#
# Version format: MAJOR.API.MINOR.PATCH{-SUFFIX}
# example: 1.1.0.25-beta
#
# MAJOR - Breaking (changing/removing) gameplay mechanics changes
# API - Breaking (changing/removing) Network/API changes
# MINOR - Backward compatible (adding) Game/Network/API stuff
# PATCH - Bug fixes only
# SUFFIX - (optional) -dev/-beta{X}/-rc{X}
VER_MAJOR = 0
VER_API = 1
VER_MINOR = 0
VER_PATCH = 0
VER_SUFFIX = -dev
# Dependency Version stuff
MC_VERSION = 1.13.2
# Official version from <https://files.minecraftforge.net/> or self
# deployed version from DOCS/MAVEN directory
MF_VERSION = 25.0.219
# Official Mappings are here <http://export.mcpbot.bspk.rs/>
MCP_MAPPING_CHANNEL = snapshot
MCP_MAPPING_VERSION = 20180921-1.13
# Mincraft Forge branch/commit from which will be bootstraped
MF_BRANCH = 1.13.x
# Mincraft Forge branch/commit from which will be bootstraped
# if current development is too heavily.
#
# Or a MincraftForge Fork with your own patches
#
MF_FALLBACK_BRANCH = upstream/for-1.13.x
# (optional) Inodes (files, directories, etc) relative to
# MINECRAFT_FORGE directory which will be using fallback versions
#
# MF_FALLBACK_INODES = \
# src/fmllauncher \
# src/main/java/net/minecraftforge/fml \
# ...
#
MF_FALLBACK_INODES =
# Name of your fork
VENDOR = YouDirk Maintained
# Comma separated list
CREDITS = Dirk (YouDirk) Lehmann
# End of Configuration
# ********************************************************************