add deps for virtualbox

This commit is contained in:
Ertuğrul Erata
2015-08-12 13:04:18 +03:00
parent 2ace1fa72b
commit 46bde02467
22 changed files with 723 additions and 0 deletions
@@ -0,0 +1,15 @@
Index: dev86-0.16.17/libc/i386sys/Makefile
===================================================================
--- dev86-0.16.17.orig/libc/i386sys/Makefile
+++ dev86-0.16.17/libc/i386sys/Makefile
@@ -20,6 +20,10 @@ CFLAGS=$(ARCH) $(CCFLAGS) $(DEFS)
all: $(SYSCALLS) $(LIBC)($(OBJ))
@$(RM) $(OBJ)
+# when OBJ is null at $(LIBC)($(OBJ)), make crashes
+$(LIBC)():
+ @:
+
syscalls: syscall.mak
$(MAKE) -f syscall.mak LIBC="$(LIBC)" CFLAGS="$(CFLAGS)"