diff options
author | June McEnroe <june@causal.agency> | 2018-07-30 15:14:49 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-07-30 15:14:49 -0400 |
commit | 41ca10496fd7b295acd23f8462c388dd03999344 (patch) | |
tree | 0740757391b2000469f9c3d3f45543aa92061f0b /bin/gfx | |
parent | Add Neckbeard Deathcamp (diff) | |
download | src-41ca10496fd7b295acd23f8462c388dd03999344.tar.gz src-41ca10496fd7b295acd23f8462c388dd03999344.zip |
Move graphical programs out of bin
I wonder when the last time was something needed -ledit...
Diffstat (limited to '')
-rw-r--r-- | bin/gfx/none.c | 24 | ||||
-rw-r--r-- | gfx/cocoa.m (renamed from bin/gfx/cocoa.m) | 0 | ||||
-rw-r--r-- | gfx/fb.c (renamed from bin/gfx/fb.c) | 0 | ||||
-rw-r--r-- | gfx/gfx.h (renamed from bin/gfx/gfx.h) | 0 | ||||
-rw-r--r-- | gfx/gfxx.c (renamed from bin/gfxx.c) | 2 | ||||
-rw-r--r-- | gfx/x11.c (renamed from bin/gfx/x11.c) | 0 |
6 files changed, 1 insertions, 25 deletions
diff --git a/bin/gfx/none.c b/bin/gfx/none.c deleted file mode 100644 index eb06d285..00000000 --- a/bin/gfx/none.c +++ /dev/null @@ -1,24 +0,0 @@ -/* Copyright (c) 2018, Curtis McEnroe <programble@gmail.com> - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero 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 Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ - -#include <err.h> -#include <sysexits.h> - -#include "gfx.h" - -int main() { - errx(EX_CONFIG, "no gfx frontend"); -} diff --git a/bin/gfx/cocoa.m b/gfx/cocoa.m index 6c0f0d66..6c0f0d66 100644 --- a/bin/gfx/cocoa.m +++ b/gfx/cocoa.m diff --git a/bin/gfx/fb.c b/gfx/fb.c index 7ee5fea1..7ee5fea1 100644 --- a/bin/gfx/fb.c +++ b/gfx/fb.c diff --git a/bin/gfx/gfx.h b/gfx/gfx.h index cd59ea3d..cd59ea3d 100644 --- a/bin/gfx/gfx.h +++ b/gfx/gfx.h diff --git a/bin/gfxx.c b/gfx/gfxx.c index 9e3c940e..4cb08a28 100644 --- a/bin/gfxx.c +++ b/gfx/gfxx.c @@ -29,7 +29,7 @@ #include <unistd.h> #include <zlib.h> -#include "gfx/gfx.h" +#include "gfx.h" #define MAX(a, b) ((a) > (b) ? (a) : (b)) #define MASK(b) ((1 << (b)) - 1) diff --git a/bin/gfx/x11.c b/gfx/x11.c index 95f08949..95f08949 100644 --- a/bin/gfx/x11.c +++ b/gfx/x11.c |