diff options
Diffstat (limited to 'winnie')
-rw-r--r-- | winnie/Makefile | 9 | ||||
-rw-r--r-- | winnie/plugins.conf | 2 | ||||
-rw-r--r-- | winnie/src/client_plugins.cc | 21 | ||||
-rw-r--r-- | winnie/src/client_plugins.h | 21 |
4 files changed, 45 insertions, 8 deletions
diff --git a/winnie/Makefile b/winnie/Makefile index 406a0fe..d2107b9 100644 --- a/winnie/Makefile +++ b/winnie/Makefile @@ -7,14 +7,7 @@ dbg = -g opt = -O0 inc = -Isrc -I../libwinnie/src -backend = SDL - -ifeq ($(backend), SDL) - def = -DWINNIE_SDL - libs = -lSDL -else - def = -DWINNIE_FBDEV -endif +include ../backend.mk CXX = g++ CXXFLAGS = -pedantic -Wall $(dbg) -fPIC -D_GNU_SOURCE $(opt) $(inc) $(def) `freetype-config --cflags` diff --git a/winnie/plugins.conf b/winnie/plugins.conf index 4778c9f..395a826 100644 --- a/winnie/plugins.conf +++ b/winnie/plugins.conf @@ -1 +1,3 @@ ../clock/winnie_clock.so +../sysmon/winnie_sysmon.so +../tunnel/winnie_tunnel.so diff --git a/winnie/src/client_plugins.cc b/winnie/src/client_plugins.cc index a50db89..a9f0cf8 100644 --- a/winnie/src/client_plugins.cc +++ b/winnie/src/client_plugins.cc @@ -1,3 +1,24 @@ +/* +winnie - an experimental window system + +Copyright (C) 2013 Eleni Maria Stea + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see <http://www.gnu.org/licenses/>. + +Author: Eleni Maria Stea <elene.mst@gmail.com> +*/ + #include <stdio.h> #include <string.h> #include <errno.h> diff --git a/winnie/src/client_plugins.h b/winnie/src/client_plugins.h index bc16280..406c22b 100644 --- a/winnie/src/client_plugins.h +++ b/winnie/src/client_plugins.h @@ -1,3 +1,24 @@ +/* +winnie - an experimental window system + +Copyright (C) 2013 Eleni Maria Stea + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see <http://www.gnu.org/licenses/>. + +Author: Eleni Maria Stea <elene.mst@gmail.com> +*/ + #ifndef CLIENT_PLUGINS_H_ #define CLIENT_PLUGINS_H_ |