summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-09-28 19:24:18 +0200
committerMiguel <m.i@gmx.at>2018-09-28 19:24:18 +0200
commitbe3d9f2cf2a8cfe670eac6df255db55ff9205c49 (patch)
treed6479240409398b0cd9de47b3728e7530d94a106 /Makefile
parent5f6c2bcf0d2f9c416134aba224d90a605f216818 (diff)
started workin on foolish window composer
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 98052a0..b2c6609 100644
--- a/Makefile
+++ b/Makefile
@@ -43,6 +43,7 @@ CFLAGS+=-I./kernel
CFLAGS+=-I./driver
CFLAGS+=-I./fs
CFLAGS+=-I./net
+CFLAGS+=-I./video
CFLAGS+=-gstabs
#CFLAGS+=-fstack-protector-all
@@ -93,6 +94,7 @@ SOURCES+=$(wildcard ./terminal/*.c)
SOURCES+=$(wildcard ./lib/*/*.c)
SOURCES+=$(wildcard ./testing/*.c)
SOURCES+=$(wildcard ./net/*.c)
+SOURCES+=$(wildcard ./video/*.c)
#derive kernel object files
OBJECTS=$(patsubst %.c, %.o, $(SOURCES))
@@ -192,7 +194,8 @@ run-qemu: all
echo XDOTOOL HACK...&& sleep 0.2 && xdotool search --name "QEMU" windowsize 100 100 && echo XDOTOOL HACK END. &
$(QEMU) -enable-kvm $(FOOLOS_ISO) -smp 4 -serial stdio \
-net nic,model=e1000 \
- -net tap,ifname=tap0,script=no,downscript=no
+ -net tap,ifname=tap0,script=no,downscript=no \
+ -vga virtio
#-net dump,file=./netfool
run-qemu-16: all