-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missing GNUMakefiles for various folders
Add missing cfinish2.a
- Loading branch information
Boisy Pitre
committed
Oct 9, 2024
1 parent
e7f9a70
commit 7a1edaa
Showing
5 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
include ../cmoc.make | ||
|
||
OFILES = cfloats.o | ||
|
||
cfloats.l: $(OFILES) | ||
lwar -c $@ $^ | ||
|
||
clean: | ||
-rm *.l *.o *.list *.map |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
include ../cmoc.make | ||
|
||
OFILES = abs.o minmax.o uminmax.o clmul.o cldiv.o cludiv.o claddsub.o clcompare.o \ | ||
clbits.o clnegcompl.o clconvert.o clmove.o clincdec.o clshifts.o \ | ||
clcommon.o ccmult.o ccmod.o ccdiv.o cshifts.o rpterr.o | ||
|
||
math.l: $(OFILES) | ||
lwar -c $@ $^ | ||
|
||
clean: | ||
-rm *.l *.o *.list *.map |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
include ../cmoc.make | ||
|
||
OFILES = abort.o signal.o chown.o chmod.o stat.o access.o create.o \ | ||
open.o read.o write.o lseek.o misc.o mod.o dir.o brk.o ibrk.o sbrk.o mem.o \ | ||
time.o process.o id.o intercept.o syscall.o syscommon.o \ | ||
profdummy.o tidyup.o cfinish.o cfinish2.o | ||
|
||
syslib.l: $(OFILES) | ||
lwar -c $@ $^ | ||
|
||
#cstart.o: cstart.a | ||
# $(LWLINK) -o=rels/cstart.o cstart.a | ||
# copy -rw=/DD/Lib rels/cstart.o | ||
|
||
#root.o: root.a | ||
# $(LWLINK) -o=rels/root.o root.a | ||
# copy -rw=/DD/Lib rels/root.o | ||
|
||
clean: | ||
-rm *.l *.o *.list *.map | ||
|
||
$(OFILES): GNUmakefile $(DCCMOC) $(RMA2LW) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
psect cfinish2_a,0,0,1,0,0 | ||
* abnormal exit - no buffer flushing | ||
* the argument to either exit entry is taken to be the | ||
* F$EXIT status | ||
_exit: ldd 2,s get the exit status | ||
os9 F$Exit and bye-bye! | ||
endsect |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
include ../cmoc.make | ||
|
||
OFILES = trig.o hyp.o log.o trnser.o dsqrt.o dinc.o \ | ||
dtype.o dmul.o ddiv.o daddsub.o dser.o dcmpr.o | ||
|
||
trans.l: $(OFILES) | ||
lwar -c $@ $^ | ||
|
||
clean: | ||
-rm temp* trans.l $(OFILES) *.list *.map | ||
|