#!/bin/bash

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

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