# This Makefile is so simple as to be pathetic

CC=gcc
CFLAGS=-g -Wall

oisc:	oisc.c
	$(CC) $(CFLAGS) oisc.c -o oisc
