File tree 3 files changed +14
-2
lines changed
3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 20
20
moc_ * .cpp
21
21
qrc_ * .cpp
22
22
ui_ * .h
23
- Makefile *
23
+ # Makefile*
24
24
* -build- *
25
25
26
26
# QtCreator
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ Vagrant.configure(2) do |config|
81
81
sudo apt-get install -y xvfb
82
82
sudo apt-get install -y python3-pip
83
83
sudo apt-get install -y libvncserver-dev
84
- sudo apt-get install -y build-essential
84
+ sudo apt-get install -y build-essential flex bison
85
85
sudo apt-get install -y cmake
86
86
sudo apt-get install -y qt5-qmake qt5-default
87
87
sudo apt-get install -y linux-source libssl-dev libelf-dev
Original file line number Diff line number Diff line change
1
+ ifneq ($(KERNELRELEASE ) ,)
2
+ obj-m := vfb.o
3
+ else
4
+ KDIR := /lib/modules/$(shell uname -r) /build
5
+ PWD := $(shell pwd)
6
+ all :
7
+ $(MAKE ) -C $(KDIR ) M=$(shell pwd) modules
8
+ install :
9
+ $(MAKE ) -C $(KDIR ) M=$(shell pwd) modules_install
10
+ % :
11
+ $(MAKE ) -C $(KDIR ) M=$(shell pwd) $@
12
+ endif
You can’t perform that action at this time.
0 commit comments