# Makefile for building gpc library
# gpc is avaliable at http://www.cs.man.ac.uk/~toby/alan/software/

CC= gcc -std=c99
CFLAGS= -pedantic -Wall -Wextra -O2 $(PIC)
L= gpc.o

all:	$L

gpc.o:	gpc.c gpc.h
	$(CC) $(CFLAGS) -c gpc.c

clean:
	-rm -f *.o *.a $T
