#!/bin/bash

gcc -g -O -c error-test.c
gcc -g -O -c error.c
gcc -g -O -c homedir.c

gcc -o error-test error-test.o error.o homedir.o
