Skip to content

Commit

Permalink
Licence file added to release archive.
Browse files Browse the repository at this point in the history
  • Loading branch information
effarig committed Dec 31, 2021
1 parent 326184e commit e537e0d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion !ReadMe
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Changes
* !ReadMe now markdown.
* Fix PSR flag names in !ReadMe.
* Email address and URL updated.
* License moved into LICENSE file.
* License moved into LICENSE file and included in distribution.

License
-------
Expand Down
14 changes: 7 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ DATE = $(Sys$Date) $(Sys$Year)
ASFLAGS = -PreDefine "BUILDDATE SETS \"$(DATE)\"" -throwback
AS = objasm $(ASFLAGS) -o $@ $*.s
LINK = link -rmf -o $@ $<
LIBS =
DEPS =
LIBS =
DEPS =
OBJS = module.o
MODNAME = BypassAlt
TGT = rm.$(MODNAME)
ZIPDIST = bypassalt/zip
MODDIST = !System.350.Modules.$(MODNAME)
INSTALL = <System$Dir>.350.Modules.$(MODNAME)
DIST = !System !ReadMe
DIST = !System !ReadMe LICENSE

all: $(TGT)

Expand All @@ -19,7 +19,7 @@ run: $(TGT)
@-RMKill $(MODNAME)
@echo Loading $(MODNAME)...
@RMLoad $(TGT)


dist: $(TGT)
@echo Removing previous distribution archive...
Expand All @@ -43,14 +43,14 @@ clean:
install: $(TGT)
@echo Install location: $(INSTALL)
@echo Removing previously installed version.
@-wipe $(INSTALL) F~VR~C
@-wipe $(INSTALL) F~VR~C
@echo Installing new version.
@copy $(TGT) $(INSTALL) A~CF~L~N~P~QR~S~T~V
@count $(INSTALL)

uninstall:
@echo Removing previously installed version.
@-wipe $(INSTALL) F~VR~C
@-wipe $(INSTALL) F~VR~C

dirs:
@cdir o
Expand All @@ -61,7 +61,7 @@ $(OBJS): $(DEPS) dirs
$(TGT): $(OBJS)
@echo Linking $*...
@$(LINK) $(OBJS) $(LIBS)

.SUFFIXES: .o .s

.s.o:
Expand Down

0 comments on commit e537e0d

Please sign in to comment.