+++ /dev/null
-#!/bin/sh
-
-export PATH="$PWD/tools:$PATH"
-
-# Build all of the libraries first
-for lib in src/lib*/; do
- Library "$lib"
-done
-
-# Now build all of the binaries
-parallel --halt now,fail=1 'Binary build/bin/{/.} {}' ::: src/*.c
-
-Binary "src/shell/"
-
-## Build all of the multi-file binaries last
-#for lib in src/*/; do
-# Binary "$lib"
-#done
+++ /dev/null
-CC=cc
-CPPPATH="-Iinc -I/usr/X11/include -I/usr/X11/include/freetype2 -I/usr/include/freetype2"
-CFLAGS="-g --std=c99 -Wall -Wextra -Werror"
-
-export CC CPPPATH CFLAGS
\ No newline at end of file
+++ /dev/null
-#include <X11/Xlib.h>
-#include <X11/Xutil.h>
-#include <X11/Xft/Xft.h>
-
-int XSync(Display* display, Bool discard);
-int XMapWindow(Display* display, Window w);
\ No newline at end of file