Initial stuff...

This commit is contained in:
Ognjen Milan Robovic 2024-04-02 16:24:14 -04:00
parent 8882624b24
commit 07226ba96f
3 changed files with 22 additions and 0 deletions

7
compile.sh Normal file
View File

@ -0,0 +1,7 @@
#!/bin/bash
set -xe
gcc -g -ansi -Wall -Wextra -Wpedantic -Werror -o xiew xiew.c
exit

7
install.sh Normal file
View File

@ -0,0 +1,7 @@
#!/bin/bash
set -xe
cp xiew /usr/bin/xiew
exit

8
xiew.c Normal file
View File

@ -0,0 +1,8 @@
#include <stdio.h>
#include <png.h>
int main (int argc, char * * argv) {
(void) argc;
(void) argv;
return (0);
}