Skip to content

Commit 4ad635e

Browse files
author
Warren Toomey
committed
Applications/s: Another vi-like editor.
1 parent 5691fc1 commit 4ad635e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+4155
-1
lines changed

Applications/Makefile

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
22
APPS = util cmd sh games cave cpm v7games games cursesgames \
33
as09 ld09 netd MWC flashrom ue cpmfs plato \
4-
emulators cpnet dw assembler CC cpp ar
4+
emulators cpnet dw assembler CC cpp ar s
55

66
.PHONY: $(APPS)
77

@@ -79,6 +79,9 @@ cpp:
7979
ar:
8080
+(cd ar; $(MAKE) -f Makefile.$(USERCPU))
8181

82+
s:
83+
+(cd s; $(MAKE) -f Makefile.$(USERCPU))
84+
8285
clean:
8386
(cd util; $(MAKE) -f Makefile.$(USERCPU) clean)
8487
(cd V7/cmd; $(MAKE) -f Makefile.$(USERCPU) clean)
@@ -104,3 +107,4 @@ clean:
104107
(cd cpp; $(MAKE) -f Makefile.$(USERCPU) clean)
105108
(cd dw; $(MAKE) -f Makefile.$(USERCPU) clean)
106109
(cd ar; $(MAKE) -f Makefile.$(USERCPU) clean)
110+
(cd s; $(MAKE) -f Makefile.$(USERCPU) clean)

0 commit comments

Comments
 (0)