Update for massive overhaul
This commit is contained in:
parent
39291ae513
commit
2d5a01548e
7
.gitignore
vendored
7
.gitignore
vendored
@ -6,4 +6,9 @@
|
|||||||
build/
|
build/
|
||||||
dist/
|
dist/
|
||||||
.vscode/
|
.vscode/
|
||||||
Release/
|
Release/
|
||||||
|
Index/
|
||||||
|
*.plist
|
||||||
|
*.blurb
|
||||||
|
*.iFiction
|
||||||
|
gametext.txt
|
@ -1,7 +0,0 @@
|
|||||||
author "Masterful Interactions"
|
|
||||||
copyright "(c) Masterful Interactions 2022"
|
|
||||||
|
|
||||||
|
|
||||||
storyfile "ButteredToast1.ulx" include
|
|
||||||
cover "./cover.jpeg"
|
|
||||||
picture 1 "./cover.jpeg"
|
|
@ -12,7 +12,11 @@
|
|||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>. ]
|
along with this program. If not, see <https://www.gnu.org/licenses/>. ]
|
||||||
|
|
||||||
"Buttered Toast: the Interactive Fiction Starring Billy Davis" by "Masterful Interactions"
|
"Buttered Toast" by "Masterful Interactions".
|
||||||
|
The story headline is "the Interactive Fiction Starring Billy Davis".
|
||||||
|
The story description is "You are Billy Davis and you need to lead Chung Ho to San Francisco. However, can you keep him safe from the legendary Possum Crotch?".
|
||||||
|
Release along with cover art.
|
||||||
|
The release number is 2.
|
||||||
|
|
||||||
Asking someone about something is speech. Telling someone about something is speech. Answering someone that something is speech. Asking someone for something is speech.
|
Asking someone about something is speech. Telling someone about something is speech. Answering someone that something is speech. Asking someone for something is speech.
|
||||||
|
|
Before Width: | Height: | Size: 106 KiB After Width: | Height: | Size: 106 KiB |
20
Makefile
20
Makefile
@ -4,22 +4,22 @@ INFORM6 := $(INFORM)/inform6/Tangled/inform6
|
|||||||
INBLORB := $(INFORM)/inblorb/Tangled/inblorb
|
INBLORB := $(INFORM)/inblorb/Tangled/inblorb
|
||||||
BUILDDIR := build
|
BUILDDIR := build
|
||||||
DISTDIR := dist
|
DISTDIR := dist
|
||||||
SRCDIR := src
|
SRCDIR := .
|
||||||
TARGET := ButteredToast1
|
TARGET := ButteredToast
|
||||||
|
PROJDIR := $(SRCDIR)/$(TARGET).inform
|
||||||
|
|
||||||
SRCS := $(wildcard $(SRCDIR)/*.inform)
|
SRCS := $(wildcard $(PROJDIR)/Source/*.ni)
|
||||||
I6S := $(patsubst %.inform,%.i6,$(SRCS))
|
I6S := $(patsubst %.ni,%.i6,$(SRCS))
|
||||||
|
|
||||||
all: $(TARGET)
|
all: $(TARGET)
|
||||||
$(INBLORB) ButteredToast.blurb ButteredToast.gblorb
|
$(INBLORB) $(PROJDIR)/Release.blurb $(SRCDIR)/$(TARGET).gblorb
|
||||||
|
|
||||||
$(TARGET): $(I6S)
|
$(TARGET): $(I6S)
|
||||||
$(INFORM6) -E2w~S~DG $<
|
$(INFORM6) -E2w~S~DG $(PROJDIR)/Build/auto.inf $(PROJDIR)/Build/output.ulx
|
||||||
|
|
||||||
%.i6: %.inform
|
%.i6: %.ni
|
||||||
$(INFORM7) $(ARGS) $<
|
$(INFORM7) -project "$(PROJDIR)" $(ARGS)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
- rm $(SRCDIR)/*.i6
|
- rm -rf $(PROJDIR)/Build
|
||||||
- rm *.gblorb
|
- rm *.gblorb
|
||||||
- rm *.ulx
|
|
||||||
|
Loading…
Reference in New Issue
Block a user