10 lines
127 B
Makefile
10 lines
127 B
Makefile
![]() |
CC = g++
|
||
|
|
||
|
all: plugins updater
|
||
|
|
||
|
plugins:
|
||
|
cd plugin && qmake .
|
||
|
cd plugin && make -j8
|
||
|
updater:
|
||
|
cd backend && ./setup.py build
|