about summary refs log tree commit diff stats
path: root/Makefile
blob: 3a2f147e7c3d6a799dbc7f4b84d06705b81c070c (plain) (blame)
1
2
3
4
5
6
7
8
9
DEBUG=-g
CFLAGS+=-Wall -Wextra -Wpedantic

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

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