diff --git a/libsrc/common/Makefile b/libsrc/common/Makefile index e90d1a634..dd6c2963b 100644 --- a/libsrc/common/Makefile +++ b/libsrc/common/Makefile @@ -51,7 +51,6 @@ S_OBJS = _fdesc.o \ isupper.o \ isxdigit.o \ itoa.o \ - jmpvec.o \ labs.o \ longjmp.o \ ltoa.o \ @@ -95,4 +94,4 @@ clean: @rm -f $(C_OBJS:.o=.s) @rm -f $(C_OBJS) @rm -f $(S_OBJS) - + diff --git a/libsrc/common/jmpvec.s b/libsrc/common/jmpvec.s deleted file mode 100644 index d9631583e..000000000 --- a/libsrc/common/jmpvec.s +++ /dev/null @@ -1,14 +0,0 @@ -; -; General purpose jump vector in the data segment that is patched at -; runtime and used by several routines. -; -; Ullrich von Bassewitz, 16.12.1998 -; - - .export jmpvec - - -.data - -jmpvec: jmp $FFFF - diff --git a/libsrc/runtime/Makefile b/libsrc/runtime/Makefile index 681ce3431..533f60a2a 100644 --- a/libsrc/runtime/Makefile +++ b/libsrc/runtime/Makefile @@ -66,6 +66,7 @@ OBJS = add.o \ incsp6.o \ incsp7.o \ incsp8.o \ + jmpvec.o \ ladd.o \ laddeq.o \ laddeqsp.o \