# Makefile for Linux - port if you want.
# This is just here 'cause I get sick of typing in the gcc stuff.

CC = gcc
CFLAGS = -lvga -o sierpin

all: sierpin

sierpin:
	$(CC) sierpin.c $(CFLAGS)
