# make CC=gcc CFLAGS='-pedantic -ansi -Wall'

c-delegate: c-delegate.c
	$(CC) $(CFLAGS) -o $@ $<

clean:
	rm -f c-delegate

.PHONY: clean
