aboutgitcodebugslistschat
path: root/Makefile
blob: 6d96f47f2f716076d975973d1bb4b60823138b30 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
CFLAGS += -Wall -Wextra -pedantic

all: merd

merd: merd.c
	$(CC) $(CFLAGS) merd.c -o merd

.PHONY: clean
clean:
	-${RM} merd