Skip to content

Commit 7a1edaa

Browse files
author
Boisy Pitre
committed
Add missing GNUMakefiles for various folders
Add missing cfinish2.a
1 parent e7f9a70 commit 7a1edaa

File tree

5 files changed

+60
-0
lines changed

5 files changed

+60
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
include ../cmoc.make
2+
3+
OFILES = cfloats.o
4+
5+
cfloats.l: $(OFILES)
6+
lwar -c $@ $^
7+
8+
clean:
9+
-rm *.l *.o *.list *.map
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
include ../cmoc.make
2+
3+
OFILES = abs.o minmax.o uminmax.o clmul.o cldiv.o cludiv.o claddsub.o clcompare.o \
4+
clbits.o clnegcompl.o clconvert.o clmove.o clincdec.o clshifts.o \
5+
clcommon.o ccmult.o ccmod.o ccdiv.o cshifts.o rpterr.o
6+
7+
math.l: $(OFILES)
8+
lwar -c $@ $^
9+
10+
clean:
11+
-rm *.l *.o *.list *.map
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
include ../cmoc.make
2+
3+
OFILES = abort.o signal.o chown.o chmod.o stat.o access.o create.o \
4+
open.o read.o write.o lseek.o misc.o mod.o dir.o brk.o ibrk.o sbrk.o mem.o \
5+
time.o process.o id.o intercept.o syscall.o syscommon.o \
6+
profdummy.o tidyup.o cfinish.o cfinish2.o
7+
8+
syslib.l: $(OFILES)
9+
lwar -c $@ $^
10+
11+
#cstart.o: cstart.a
12+
# $(LWLINK) -o=rels/cstart.o cstart.a
13+
# copy -rw=/DD/Lib rels/cstart.o
14+
15+
#root.o: root.a
16+
# $(LWLINK) -o=rels/root.o root.a
17+
# copy -rw=/DD/Lib rels/root.o
18+
19+
clean:
20+
-rm *.l *.o *.list *.map
21+
22+
$(OFILES): GNUmakefile $(DCCMOC) $(RMA2LW)

Source/Libs/KLibc/sys.a/cfinish2.a

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
psect cfinish2_a,0,0,1,0,0
2+
* abnormal exit - no buffer flushing
3+
* the argument to either exit entry is taken to be the
4+
* F$EXIT status
5+
_exit: ldd 2,s get the exit status
6+
os9 F$Exit and bye-bye!
7+
endsect
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
include ../cmoc.make
2+
3+
OFILES = trig.o hyp.o log.o trnser.o dsqrt.o dinc.o \
4+
dtype.o dmul.o ddiv.o daddsub.o dser.o dcmpr.o
5+
6+
trans.l: $(OFILES)
7+
lwar -c $@ $^
8+
9+
clean:
10+
-rm temp* trans.l $(OFILES) *.list *.map
11+

0 commit comments

Comments
 (0)