DEBUG=-g
CFLAGS+=-Wall -Wextra -Wpedantic

base64: base64.c
	$(CC) $(CFLAGS) $(DEBUG) -o $@ base64.c

%.c :
	$(CC) $(CFLAGS) $(DEBUG) $@