Update Makefile

This commit is contained in:
William Moore 2022-07-20 02:59:05 -05:00
parent a178a75177
commit bf1ae3463d
1 changed files with 3 additions and 3 deletions

View File

@ -7,8 +7,8 @@ DISTDIR := dist
SRCDIR := src
TARGET := ButteredToast1
SRCS := $(wildcard $(SRCDIR)/*.ni)
I6S := $(patsubst %.ni,%.i6,$(SRCS))
SRCS := $(wildcard $(SRCDIR)/*.inform)
I6S := $(patsubst %.inform,%.i6,$(SRCS))
all: $(TARGET)
$(INBLORB) ButteredToast.blurb ButteredToast.gblorb
@ -16,7 +16,7 @@ all: $(TARGET)
$(TARGET): $(I6S)
$(INFORM6) -E2w~S~DG $<
%.i6: %.ni
%.i6: %.inform
$(INFORM7) $(ARGS) $<
clean: