Update for massive overhaul
This commit is contained in:
parent
39291ae513
commit
2d5a01548e
5
.gitignore
vendored
5
.gitignore
vendored
@ -7,3 +7,8 @@ build/
|
||||
dist/
|
||||
.vscode/
|
||||
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
|
||||
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.
|
||||
|
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
|
||||
BUILDDIR := build
|
||||
DISTDIR := dist
|
||||
SRCDIR := src
|
||||
TARGET := ButteredToast1
|
||||
SRCDIR := .
|
||||
TARGET := ButteredToast
|
||||
PROJDIR := $(SRCDIR)/$(TARGET).inform
|
||||
|
||||
SRCS := $(wildcard $(SRCDIR)/*.inform)
|
||||
I6S := $(patsubst %.inform,%.i6,$(SRCS))
|
||||
SRCS := $(wildcard $(PROJDIR)/Source/*.ni)
|
||||
I6S := $(patsubst %.ni,%.i6,$(SRCS))
|
||||
|
||||
all: $(TARGET)
|
||||
$(INBLORB) ButteredToast.blurb ButteredToast.gblorb
|
||||
$(INBLORB) $(PROJDIR)/Release.blurb $(SRCDIR)/$(TARGET).gblorb
|
||||
|
||||
$(TARGET): $(I6S)
|
||||
$(INFORM6) -E2w~S~DG $<
|
||||
$(INFORM6) -E2w~S~DG $(PROJDIR)/Build/auto.inf $(PROJDIR)/Build/output.ulx
|
||||
|
||||
%.i6: %.inform
|
||||
$(INFORM7) $(ARGS) $<
|
||||
%.i6: %.ni
|
||||
$(INFORM7) -project "$(PROJDIR)" $(ARGS)
|
||||
|
||||
clean:
|
||||
- rm $(SRCDIR)/*.i6
|
||||
- rm -rf $(PROJDIR)/Build
|
||||
- rm *.gblorb
|
||||
- rm *.ulx
|
||||
|
Loading…
Reference in New Issue
Block a user