aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 2541a168caf435f968e08683a47fb9474d74ad3d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
CC=clang
CFLAGS=-Wall -g -D_DEBUG

mcping: mcping.c mctypes.o mcnetwork.o
	$(CC) $(CFLAGS) $^ -o $@

%.o: %.c %.h
	$(CC) $(CFLAGS) -c $<

lint:
	indent -kr -ts4 *.c

clean:
	rm -f *.o *~