CC=gcc
CFLAGS=-std=c99 -Wall -pedantic -g3

all: ibid

ibid: ibid.o
	$(CC) $(CFLAGS) -o $@ $^
